mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2025-12-06 14:36:34 +01:00
12 lines
142 B
C++
12 lines
142 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace MM::Components {
|
|
struct Name {
|
|
static const size_t max_str_len {64u};
|
|
std::string str;
|
|
};
|
|
}
|
|
|