commit | author | age | ||
6e1425 | 1 | // Created by ProbablyInteractive. |
H | 2 | // Copyright 2009 Probably Interactive. All rights reserved. |
3 | ||
4 | #import <Foundation/Foundation.h> | |
5 | //#import "lua.h" | |
6 | #import <lua/lua.h> | |
7 | ||
8 | #define WAX_VERSION 0.93 | |
9 | ||
10 | void wax_setup(); | |
11 | int wax_start(char *initScript, lua_CFunction extensionFunctions, ...); | |
12 | void wax_startWithServer(); | |
13 | void wax_end(); | |
14 | ||
15 | lua_State *wax_currentLuaState(); | |
16 | ||
17 | void luaopen_wax(lua_State *L); |