diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-21 13:29:05 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-21 13:29:05 +0100 |
commit | b4a68e58a9badb0f33d43a4cce9877935b2cc917 (patch) | |
tree | b9436d62cdd326166d6d0d3e6e35e04673d311f7 /source/cChunkMap.h | |
parent | Revised GNUmakefile for header file dependencies (again; this time it should work ;) (diff) | |
download | cuberite-b4a68e58a9badb0f33d43a4cce9877935b2cc917.tar cuberite-b4a68e58a9badb0f33d43a4cce9877935b2cc917.tar.gz cuberite-b4a68e58a9badb0f33d43a4cce9877935b2cc917.tar.bz2 cuberite-b4a68e58a9badb0f33d43a4cce9877935b2cc917.tar.lz cuberite-b4a68e58a9badb0f33d43a4cce9877935b2cc917.tar.xz cuberite-b4a68e58a9badb0f33d43a4cce9877935b2cc917.tar.zst cuberite-b4a68e58a9badb0f33d43a4cce9877935b2cc917.zip |
Diffstat (limited to '')
-rw-r--r-- | source/cChunkMap.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/cChunkMap.h b/source/cChunkMap.h index 33e468eb1..2ab8ea0d0 100644 --- a/source/cChunkMap.h +++ b/source/cChunkMap.h @@ -54,6 +54,8 @@ public: int GetHeight (int a_BlockX, int a_BlockZ);
void FastSetBlocks (sSetBlockList & a_BlockList);
void CollectPickupsByPlayer(cPlayer * a_Player);
+ char GetBlock (int a_X, int a_Y, int a_Z);
+ char GetBlockMeta (int a_X, int a_Y, int a_Z);
/// Compares clients of two chunks, calls the callback accordingly
void CompareChunkClients(int a_ChunkX1, int a_ChunkY1, int a_ChunkZ1, int a_ChunkX2, int a_ChunkY2, int a_ChunkZ2, cClientDiffCallback & a_Callback);
|