AGS.Plugin.Lua.InvokeLua.lua_getglobal C# (CSharp) Method

lua_getglobal() public static method

public static lua_getglobal ( IntPtr L, string s ) : void
L System.IntPtr
s string
return void
        public static void lua_getglobal(lua_State L, string s)
        {
            lua_getfield(L, LUA_GLOBALSINDEX, s);
        }
InvokeLua