light/modules/ecs/private/entity.cpp

11 lines
175 B
C++
Raw Normal View History

2025-07-11 01:16:52 +03:30
#include <ecs/entity.hpp>
#include <ecs/scene.hpp>
2025-07-05 13:28:41 +03:30
2025-07-11 00:05:48 +03:30
namespace lt {
2025-07-05 13:28:41 +03:30
Entity::Entity(entt::entity handle, Scene *scene): m_handle(handle), m_scene(scene)
2025-07-05 13:28:41 +03:30
{
}
2025-07-11 00:05:48 +03:30
} // namespace lt