Add a PromotionManager.
[tagua/yd.git] / tests / test_lua.cpp
blob37fd9ad3c668827cb4ed097d625f8f4c5d20e17e
1 #include "../src/luaconfig.h"
3 using namespace LuaLoader;
5 int main(int argc, char** argv) {
6 const char* file;
7 if (argc > 1)
8 file = argv[1];
9 else
10 file = "test.lua";
12 Api api;
13 api.runFile(file);
15 return 0;