diff options
Diffstat (limited to '')
-rw-r--r-- | source/cWorld.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cWorld.h b/source/cWorld.h index 383ffaec3..10f73fae3 100644 --- a/source/cWorld.h +++ b/source/cWorld.h @@ -56,7 +56,6 @@ public: cPlayer* GetPlayer( const char* a_PlayerName ); //tolua_export
void AddEntity( cEntity* a_Entity );
- void AddToRemoveEntityQueue( cEntity & a_Entity );
bool RemoveEntityFromChunk( cEntity & a_Entity, cChunk* a_CalledFrom = 0 );
EntityList & GetEntities();
@@ -129,6 +128,7 @@ private: struct sWorldState;
sWorldState* m_pState;
+ void AddToRemoveEntityQueue( cEntity & a_Entity );
void RemoveEntity( cEntity* a_Entity );
void UnloadUnusedChunks();
|