Example #1
0
        public string Pack(ref sFolder unpacked, sFile file)
        {
            string fileOut = pluginHost.Get_TempFile();

            PAC.Pack(file.path, fileOut, ref unpacked);

            return(fileOut);
        }
Example #2
0
 public sFolder Unpack(sFile file)
 {
     return(PAC.Unpack(file.path, file.name));
 }