diff options
author | madmaxoft <github@xoft.cz> | 2014-08-03 11:57:05 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-08-03 22:04:48 +0200 |
commit | 6ce61d1a6fd912c99284875a9052475e06fba432 (patch) | |
tree | b0eea911ec83c3b99997df7521f5302e670a2574 /src/Cuboid.h | |
parent | Merge branch 'master' of https://github.com/mc-server/MCServer (diff) | |
download | cuberite-6ce61d1a6fd912c99284875a9052475e06fba432.tar cuberite-6ce61d1a6fd912c99284875a9052475e06fba432.tar.gz cuberite-6ce61d1a6fd912c99284875a9052475e06fba432.tar.bz2 cuberite-6ce61d1a6fd912c99284875a9052475e06fba432.tar.lz cuberite-6ce61d1a6fd912c99284875a9052475e06fba432.tar.xz cuberite-6ce61d1a6fd912c99284875a9052475e06fba432.tar.zst cuberite-6ce61d1a6fd912c99284875a9052475e06fba432.zip |
Diffstat (limited to 'src/Cuboid.h')
-rw-r--r-- | src/Cuboid.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Cuboid.h b/src/Cuboid.h index d62cf8063..c205156ec 100644 --- a/src/Cuboid.h +++ b/src/Cuboid.h @@ -20,7 +20,11 @@ public: cCuboid(int a_X1, int a_Y1, int a_Z1) : p1(a_X1, a_Y1, a_Z1), p2(a_X1, a_Y1, a_Z1) {} cCuboid(int a_X1, int a_Y1, int a_Z1, int a_X2, int a_Y2, int a_Z2) : p1(a_X1, a_Y1, a_Z1), p2(a_X2, a_Y2, a_Z2) {} - cCuboid & operator=(cCuboid a_Other); + // tolua_end + + cCuboid & operator =(cCuboid a_Other); + + // tolua_begin void Assign(int a_X1, int a_Y1, int a_Z1, int a_X2, int a_Y2, int a_Z2); void Assign(const cCuboid & a_SrcCuboid); |