#ifndef OBJECTS_ENTITY_DEF_HPP_ #define OBJECTS_ENTITY_DEF_HPP_ #include #include #include #include "../typedefs.hpp" #include "../maths/aabb.hpp" namespace rigging { class RigConfig; } struct EntityDef { /// @brief Entity string id (with prefix included) std::string const name; std::string scriptName = name.substr(name.find(':')+1); glm::vec3 hitbox {0.5f}; std::vector boxTriggers {}; std::string rigName = name.substr(name.find(":")+1); struct { entityid_t id; rigging::RigConfig* rig; } rt {}; EntityDef(const std::string& name) : name(name) {} EntityDef(const EntityDef&) = delete; }; #endif // OBJECTS_ENTITY_DEF_HPP_