Exemple #1
0
        public void Save(string path, uint countPlus = 0)
        {
            Recalc(countPlus);

            using (FileStream fs = new FileStream(path, FileMode.Create))
                using (BinaryWriter bw = new BinaryWriter(fs))
                {
                    OutputItems.Write(bw);
                }
        }