diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-14 22:09:14 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-14 22:09:14 +0100 |
commit | 19e711a1e3f631079c9c8eef93fe4d62a7e801cd (patch) | |
tree | 53a75e7dc78aab570760e64a0e3cea5ee7b68289 /source/cChunkLoader.h | |
parent | Got rid of cWorld::GetAllPlayers() and implemented ForEachPlayer() more or less in Lua (diff) | |
download | cuberite-19e711a1e3f631079c9c8eef93fe4d62a7e801cd.tar cuberite-19e711a1e3f631079c9c8eef93fe4d62a7e801cd.tar.gz cuberite-19e711a1e3f631079c9c8eef93fe4d62a7e801cd.tar.bz2 cuberite-19e711a1e3f631079c9c8eef93fe4d62a7e801cd.tar.lz cuberite-19e711a1e3f631079c9c8eef93fe4d62a7e801cd.tar.xz cuberite-19e711a1e3f631079c9c8eef93fe4d62a7e801cd.tar.zst cuberite-19e711a1e3f631079c9c8eef93fe4d62a7e801cd.zip |
Diffstat (limited to 'source/cChunkLoader.h')
-rw-r--r-- | source/cChunkLoader.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/source/cChunkLoader.h b/source/cChunkLoader.h deleted file mode 100644 index aa6f3806f..000000000 --- a/source/cChunkLoader.h +++ /dev/null @@ -1,30 +0,0 @@ -#pragma once
-
-class cChunk;
-class cChunkLoader
-{
-public:
- cChunkLoader();
- ~cChunkLoader();
-
- cChunk* LoadChunk( int a_X, int a_Y, int a_Z );
- bool SaveChunk( const cChunk & a_Chunk );
-
- struct ChunkPack;
-private:
- cChunk* LoadFormat1( int a_X, int a_Y, int a_Z );
- ChunkPack* LoadPak1( int PakX, int PakY, int PakZ ); // This loads a .pak file from disk and returns it, nothing more
-
- // Old stuffs
- cChunk* LoadOldFormat( int a_X, int a_Y, int a_Z );
- bool SaveOldFormat( const cChunk & a_Chunk );
-
- static void SaveThread( void* a_Param );
-
- bool m_bStop;
- cCriticalSection* m_CriticalSection;
- cEvent* m_Event;
-
- struct ChunkPacks; // Defined in .cpp
- ChunkPacks* m_ChunkPacks;
-};
\ No newline at end of file |