예제 #1
0
 public static void lua_getglobal(UIntPtr L, string name)
 {
     BBLua.lua_pushstring(L, name);
     BBLua.lua_rawget(L, (int)LuaPseudoIndices.GLOBALSINDEX);
 }