diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-11-01 22:38:20 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-11-01 22:38:20 +0100 |
commit | 4cebaa99f88e25e039416354cf490fe98642af7e (patch) | |
tree | 40f8b0cc061e3ec55539e30754df3e3d1c17dd80 /source/AllToLua.pkg | |
parent | Added Bats and Witches. (diff) | |
download | cuberite-4cebaa99f88e25e039416354cf490fe98642af7e.tar cuberite-4cebaa99f88e25e039416354cf490fe98642af7e.tar.gz cuberite-4cebaa99f88e25e039416354cf490fe98642af7e.tar.bz2 cuberite-4cebaa99f88e25e039416354cf490fe98642af7e.tar.lz cuberite-4cebaa99f88e25e039416354cf490fe98642af7e.tar.xz cuberite-4cebaa99f88e25e039416354cf490fe98642af7e.tar.zst cuberite-4cebaa99f88e25e039416354cf490fe98642af7e.zip |
Diffstat (limited to '')
-rw-r--r-- | source/AllToLua.pkg | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source/AllToLua.pkg b/source/AllToLua.pkg index 0913de9a2..dea5dc54f 100644 --- a/source/AllToLua.pkg +++ b/source/AllToLua.pkg @@ -3,6 +3,16 @@ $#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same acr $#include "tolua_base.h" +// Typedefs from Globals.h, so that we don't have to include that file: +typedef long long Int64; +typedef int Int32; +typedef short Int16; + +typedef unsigned long long UInt64; +typedef unsigned int UInt32; +typedef unsigned short UInt16; + + $cfile "ChunkDef.h" $cfile "Torch.h" |