mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2025-06-20 03:36:37 +02: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;
|
|
};
|
|
}
|
|
|