VoxelEngine/src/objects/EntityDef.hpp
2024-06-25 23:36:07 +03:00

17 lines
339 B
C++

#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_