lua_type() private method

private lua_type ( IntPtr luaState, int index ) : int
luaState System.IntPtr
index int
return int
Esempio n. 1
0
 public static bool IsLuaFunction(this IntPtr L, int index)
 {
     return(Lua.lua_type(L, index) == (int)LuaTypes.LUA_TFUNCTION);
 }