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

15 lines
222 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)
{
}
Entity::~Entity()
{
}
} // namespace Light