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

11 lines
199 B
C++
Raw Normal View History

2025-07-05 13:28:41 +03:30
#include <engine/scene/entity.hpp>
#include <engine/scene/scene.hpp>
namespace Light {
Entity::Entity(entt::entity handle, Scene *scene): m_handle(handle), m_scene(scene)
2025-07-05 13:28:41 +03:30
{
}
} // namespace Light