コード例 #1
0
ファイル: UtilCommonWrap.cs プロジェクト: 737871854/S6Client
    static int DecompressFile(IntPtr L)
    {
        LuaScriptMgr.CheckArgsCount(L, 1);
        string arg0 = LuaScriptMgr.GetLuaString(L, 1);
        string o    = UtilCommon.DecompressFile(arg0);

        LuaScriptMgr.Push(L, o);
        return(1);
    }