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