rpgxef/code/game/entities/InfoNotNull.cpp

10 lines
256 B
C++
Raw Normal View History

#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);
}
}