mirror of
https://github.com/UberGames/rpgxEF.git
synced 2025-02-24 13:01:10 +00:00
9 lines
195 B
C++
9 lines
195 B
C++
#include "Light.h"
|
|
|
|
namespace game::entities
|
|
{
|
|
Light::Light(GameSharedEntity* sharedEntity, Entity* parent) : Entity{EntityType::ENT_LIGHT, "light", sharedEntity, parent}
|
|
{
|
|
free();
|
|
}
|
|
}
|