IArea

Area Manager Interface.

C++
struct IArea {
};
File

IEntitySystem.h

IArea::~IArea Destructor
C++
virtual ~IArea();
IArea::GetEntityAmount Method
C++
virtual size_t GetEntityAmount() const = 0;
IArea::GetEntityByIdx Method
C++
virtual const EntityId GetEntityByIdx(int index) const = 0;
IArea::GetGroup Method
C++
virtual int GetGroup() const = 0;
IArea::GetID Method
C++
virtual int GetID() const = 0;
IArea::GetMinMax Method
C++
virtual void GetMinMax(Vec3 ** min, Vec3 ** max) const = 0;
IArea::GetPriority Method
C++
virtual int GetPriority() const = 0;