Files
MushMachine/framework/common_components/src/mm/components/name.hpp

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;
};
}