Files
Seele/src/Engine/Actor/Entity.cpp
T
2024-06-09 12:20:53 +02:00

7 lines
183 B
C++

#include "Entity.h"
using namespace Seele;
Entity::Entity(PScene scene) : scene(scene), identifier(scene->createEntity()) {}
Entity::~Entity() { scene->destroyEntity(identifier); }