/****************************************************************************** * File - entity.h * Author - Joey Pollack * Date - 2022/05/23 (y/m/d) * Mod Date - 2022/05/23 (y/m/d) * Description - Provides functionality to work with world entities ******************************************************************************/ #ifndef LUNARIUM_ENTITY_H_ #define LUNARIUM_ENTITY_H_ #include namespace lunarium { class Entity { public: Entity(entt::registry* r); private: entt::entity mID; entt::registry* mpRegistry; }; } #endif // LUNARIUM_ENTITY_H_