diff options
author | Mattes D <github@xoft.cz> | 2016-06-30 19:35:00 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2016-07-18 22:11:38 +0200 |
commit | f0c53dbad48a295413d3207cd463e1dfb19faa93 (patch) | |
tree | e63263b5e0a328c9f833b25cd2bb2f1ca01802c6 /src/Generating/ChunkDesc.h | |
parent | Bindings: Added a script to generate a diff between APIDesc and ToLua. (diff) | |
download | cuberite-f0c53dbad48a295413d3207cd463e1dfb19faa93.tar cuberite-f0c53dbad48a295413d3207cd463e1dfb19faa93.tar.gz cuberite-f0c53dbad48a295413d3207cd463e1dfb19faa93.tar.bz2 cuberite-f0c53dbad48a295413d3207cd463e1dfb19faa93.tar.lz cuberite-f0c53dbad48a295413d3207cd463e1dfb19faa93.tar.xz cuberite-f0c53dbad48a295413d3207cd463e1dfb19faa93.tar.zst cuberite-f0c53dbad48a295413d3207cd463e1dfb19faa93.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Generating/ChunkDesc.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Generating/ChunkDesc.h b/src/Generating/ChunkDesc.h index aa689fcd6..9e3f4af5e 100644 --- a/src/Generating/ChunkDesc.h +++ b/src/Generating/ChunkDesc.h @@ -52,7 +52,12 @@ public: void FillBlocks(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta); void SetBlockTypeMeta(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta); - void GetBlockTypeMeta(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta); + + // tolua_end + /** Returns the BlockType and BlockMeta at the specified coords. + Exported to Lua manually to avoid extra parameters generated by ToLua++. */ + void GetBlockTypeMeta(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta) const; + // tolua_begin void SetBlockType(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_BlockType); BLOCKTYPE GetBlockType(int a_RelX, int a_RelY, int a_RelZ); |