Ejemplo n.º 1
0
 public static int lua_getstack(int level, lua_Debug ar) => lua_getstack(_state, level, ar);
Ejemplo n.º 2
0
 public static string lua_setlocal(lua_Debug ar, int n) => lua_setlocal(_state, ar, n);
Ejemplo n.º 3
0
 public static extern string lua_setlocal(LuaState luaState, lua_Debug ar, int n);
Ejemplo n.º 4
0
 public static int lua_getinfo(string what, lua_Debug ar) => lua_getinfo(_state, what, ar);
Ejemplo n.º 5
0
 public static extern int lua_getinfo(LuaState luaState, string what, lua_Debug ar);
Ejemplo n.º 6
0
 public static extern int lua_getstack(LuaState luaState, int level, lua_Debug ar);
 public static int lua_getstack(this LuaState luaState, int level, lua_Debug ar) => Lua.lua_getstack(luaState, level, ar);
 public static string lua_setlocal(this LuaState luaState, lua_Debug ar, int n) => Lua.lua_setlocal(luaState, ar, n);
Ejemplo n.º 9
0
 public static string lua_setlocal(lua_Debug ar, int n) => lua_setlocal(_state, ar, n);
 public static int lua_getinfo(this LuaState luaState, string what, lua_Debug ar) => Lua.lua_getinfo(luaState, what, ar);
Ejemplo n.º 11
0
 public static int lua_getstack(int level, lua_Debug ar) => lua_getstack(_state, level, ar);
Ejemplo n.º 12
0
 public static int lua_getinfo(string what, lua_Debug ar) => lua_getinfo(_state, what, ar);
Ejemplo n.º 13
0
 public static extern string lua_setlocal(LuaState luaState, lua_Debug ar, int n);
Ejemplo n.º 14
0
 public static extern int lua_getstack(LuaState luaState, int level, lua_Debug ar);
Ejemplo n.º 15
0
 public static extern int lua_getinfo(LuaState luaState, string what, lua_Debug ar);