AGS.Plugin.Lua.InvokeLua.lua_getgccount C# (CSharp) 메소드

lua_getgccount() 공개 정적인 메소드

public static lua_getgccount ( IntPtr L ) : int
L System.IntPtr
리턴 int
        public static int lua_getgccount(lua_State L)
        {
            return lua_gc(L, LUA_GCCOUNT, 0);
        }
InvokeLua