diff options
Diffstat (limited to 'src/game/server/entity.h')
| -rw-r--r-- | src/game/server/entity.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/game/server/entity.h b/src/game/server/entity.h index dc50daca..d56c60e7 100644 --- a/src/game/server/entity.h +++ b/src/game/server/entity.h @@ -57,11 +57,8 @@ class CEntity { MACRO_ALLOC_HEAP() -private: - friend class CGameWorld; // thy these? - CEntity *m_pPrevEntity; - CEntity *m_pNextEntity; + friend class CGameWorld; // entity list handling CEntity *m_pPrevTypeEntity; CEntity *m_pNextTypeEntity; @@ -69,7 +66,7 @@ private: protected: bool m_MarkedForDestroy; int m_Id; - int m_Objtype; + int m_ObjType; public: CEntity(CGameWorld *pGameWorld, int Objtype); virtual ~CEntity(); |