AGS.Plugin.Lua.InvokeLua.lua_pop C# (CSharp) Méthode

lua_pop() public static méthode

public static lua_pop ( IntPtr L, int n ) : void
L System.IntPtr
n int
Résultat void
        public static void lua_pop(lua_State L, int n)
        {
            lua_settop(L, -n - 1);
        }
InvokeLua