fix and refactor ContentLUT

This commit is contained in:
MihailRis
2024-06-25 23:36:07 +03:00
parent ee9f1639e9
commit 1acced4475
5 changed files with 99 additions and 107 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef OBJECTS_ENTITY_DEF_HPP_
#define OBJECTS_ENTITY_DEF_HPP_
#include <string>
#include "../typedefs.hpp"
struct EntityDef {
/// @brief Entity string id (with prefix included)
std::string const name;
EntityDef(const std::string& name);
EntityDef(const EntityDef&) = delete;
};
#endif // OBJECTS_ENTITY_DEF_HPP_