light/modules/engine/src/scene/entity.cpp

11 lines
193 B
C++
Raw Normal View History

2025-07-05 13:28:41 +03:30
#include <engine/scene/entity.hpp>
#include <engine/scene/scene.hpp>
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