Files
Seele/src/Engine/Actor/Entity.cpp
T
2023-01-21 18:43:21 +01:00

15 lines
198 B
C++

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