diff options
author | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-04-11 14:16:13 +0200 |
---|---|---|
committer | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-04-11 14:16:13 +0200 |
commit | ae3fa2b6220b5e5f995c0b9c79db605cddcd5fb5 (patch) | |
tree | 2b0994ab5e9709562f4dec862456c51762986ae9 /source/cEntity.h | |
parent | Added error messages to socket closing error conditions for *nix (diff) | |
download | cuberite-ae3fa2b6220b5e5f995c0b9c79db605cddcd5fb5.tar cuberite-ae3fa2b6220b5e5f995c0b9c79db605cddcd5fb5.tar.gz cuberite-ae3fa2b6220b5e5f995c0b9c79db605cddcd5fb5.tar.bz2 cuberite-ae3fa2b6220b5e5f995c0b9c79db605cddcd5fb5.tar.lz cuberite-ae3fa2b6220b5e5f995c0b9c79db605cddcd5fb5.tar.xz cuberite-ae3fa2b6220b5e5f995c0b9c79db605cddcd5fb5.tar.zst cuberite-ae3fa2b6220b5e5f995c0b9c79db605cddcd5fb5.zip |
Diffstat (limited to '')
-rw-r--r-- | source/cEntity.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/cEntity.h b/source/cEntity.h index 1b26f46be..34c878abd 100644 --- a/source/cEntity.h +++ b/source/cEntity.h @@ -80,9 +80,9 @@ public: //tolua_export float GetRoll (void) const {return m_Rot.z; } //tolua_export
Vector3f GetLookVector(); //tolua_export
- int GetChunkX(void) const {return m_ChunkX; }
- int GetChunkY(void) const {return m_ChunkY; }
- int GetChunkZ(void) const {return m_ChunkZ; }
+ int GetChunkX(void) const {return m_ChunkX; } //tolua_export
+ int GetChunkY(void) const {return m_ChunkY; } //tolua_export
+ int GetChunkZ(void) const {return m_ChunkZ; } //tolua_export
void SetPosX( const double & a_PosX ); //tolua_export
void SetPosY( const double & a_PosY ); //tolua_export
|