예제 #1
0
  IEntity::~IEntity()
  {
    ILOG() << "IEntity::dtor(" << mEntityID << ")" << std::endl;

    // Make sure to drop all our systems
    DropAllSystems();
  }
예제 #2
0
파일: Instance.cpp 프로젝트: ItsJackson/gqe
  Instance::~Instance()
  {
    // First drop all our registered ISystem classes
    DropAllSystems();

    // Call our Prototype to remove ourselves
    mPrototype.DestroyInstance(GetID());
  }