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

        UtilCommon.CompressFile(arg0, arg1);
        return(0);
    }