Files
Seele/src/Engine/Actor/Entity.cpp
T

7 lines
183 B
C++
Raw Normal View History

#include "Entity.h"
using namespace Seele;
2024-06-09 12:20:04 +02:00
Entity::Entity(PScene scene) : scene(scene), identifier(scene->createEntity()) {}
2024-06-09 12:20:04 +02:00
Entity::~Entity() { scene->destroyEntity(identifier); }