mirror of
https://github.com/UberGames/rpgxEF.git
synced 2025-02-24 13:01:10 +00:00
9 lines
256 B
C++
9 lines
256 B
C++
#include "InfoNotNull.h"
|
|
|
|
namespace game::entities
|
|
{
|
|
InfoNotNull::InfoNotNull(GameSharedEntity* sharedEntity, Entity* parent) : Entity{EntityType::ENT_INFO_NOTNULL, "info_notnull", sharedEntity, parent}
|
|
{
|
|
setOrigin(m_sharedEntity->s.origin);
|
|
}
|
|
}
|