diff options
author | cedeel@gmail.com <cedeel@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-16 00:40:51 +0200 |
---|---|---|
committer | cedeel@gmail.com <cedeel@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-16 00:40:51 +0200 |
commit | c4f785e0bea4104d9a0f3346478d856cd9903605 (patch) | |
tree | 42c570687d30b3f0c1ae0a78e6be2e1df9fad5b1 /source/AllToLua.pkg | |
parent | Rewritten ForEach using #define-s, new ones can be added as a simple one-liner (diff) | |
download | cuberite-c4f785e0bea4104d9a0f3346478d856cd9903605.tar cuberite-c4f785e0bea4104d9a0f3346478d856cd9903605.tar.gz cuberite-c4f785e0bea4104d9a0f3346478d856cd9903605.tar.bz2 cuberite-c4f785e0bea4104d9a0f3346478d856cd9903605.tar.lz cuberite-c4f785e0bea4104d9a0f3346478d856cd9903605.tar.xz cuberite-c4f785e0bea4104d9a0f3346478d856cd9903605.tar.zst cuberite-c4f785e0bea4104d9a0f3346478d856cd9903605.zip |
Diffstat (limited to 'source/AllToLua.pkg')
-rw-r--r-- | source/AllToLua.pkg | 101 |
1 files changed, 51 insertions, 50 deletions
diff --git a/source/AllToLua.pkg b/source/AllToLua.pkg index 09c6b7a2d..7a5de8d49 100644 --- a/source/AllToLua.pkg +++ b/source/AllToLua.pkg @@ -1,50 +1,51 @@ -
-$#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
-
-$#include "tolua_base.h"
-
-$cfile "cTorch.h"
-$cfile "cStairs.h"
-$cfile "cStep.h"
-$cfile "cLadder.h"
-
-$cfile "../iniFile/iniFile.h"
-
-$cfile "BlockID.h"
-$cfile "PacketID.h"
-$cfile "Defines.h"
-$cfile "LuaFunctions.h"
-$cfile "cStringMap.h"
-$cfile "cChatColor.h"
-$cfile "cClientHandle.h"
-$cfile "cEntity.h"
-$cfile "cPawn.h"
-$cfile "cPlayer.h"
-$cfile "cPluginManager.h"
-$cfile "cPlugin.h"
-$cfile "cPlugin_NewLua.h"
-$cfile "cPlugin_Lua.h"
-$cfile "cServer.h"
-$cfile "cWorld.h"
-$cfile "cInventory.h"
-$cfile "cItem.h"
-$cfile "cWebAdmin.h"
-$cfile "cWebPlugin.h"
-$cfile "cWebPlugin_Lua.h"
-$cfile "cPickup.h"
-$cfile "cRoot.h"
-$cfile "cTCPLink.h"
-$cfile "Vector3f.h"
-$cfile "Vector3d.h"
-$cfile "Vector3i.h"
-$cfile "Matrix4f.h"
-$cfile "cCuboid.h"
-$cfile "cMCLogger.h"
-$cfile "cTracer.h"
-$cfile "cGroup.h"
-$cfile "packets/cPacket_Login.h"
-$cfile "packets/cPacket_BlockDig.h"
-$cfile "packets/cPacket_BlockPlace.h"
-$cfile "cLuaChunk.h"
-$cfile "CraftingRecipes.h"
-$cfile "LuaItems.h"
+ +$#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules + +$#include "tolua_base.h" + +$cfile "cTorch.h" +$cfile "cStairs.h" +$cfile "cStep.h" +$cfile "cLadder.h" +$cfile "cVine.h" + +$cfile "../iniFile/iniFile.h" + +$cfile "BlockID.h" +$cfile "PacketID.h" +$cfile "Defines.h" +$cfile "LuaFunctions.h" +$cfile "cStringMap.h" +$cfile "cChatColor.h" +$cfile "cClientHandle.h" +$cfile "cEntity.h" +$cfile "cPawn.h" +$cfile "cPlayer.h" +$cfile "cPluginManager.h" +$cfile "cPlugin.h" +$cfile "cPlugin_NewLua.h" +$cfile "cPlugin_Lua.h" +$cfile "cServer.h" +$cfile "cWorld.h" +$cfile "cInventory.h" +$cfile "cItem.h" +$cfile "cWebAdmin.h" +$cfile "cWebPlugin.h" +$cfile "cWebPlugin_Lua.h" +$cfile "cPickup.h" +$cfile "cRoot.h" +$cfile "cTCPLink.h" +$cfile "Vector3f.h" +$cfile "Vector3d.h" +$cfile "Vector3i.h" +$cfile "Matrix4f.h" +$cfile "cCuboid.h" +$cfile "cMCLogger.h" +$cfile "cTracer.h" +$cfile "cGroup.h" +$cfile "packets/cPacket_Login.h" +$cfile "packets/cPacket_BlockDig.h" +$cfile "packets/cPacket_BlockPlace.h" +$cfile "cLuaChunk.h" +$cfile "CraftingRecipes.h" +$cfile "LuaItems.h" |