예제 #1
0
        public void Save(string file)
        {
            // Check if the file does not exist
            if (!File.Exists(file))
            {
                // Create the file
                File.CreateText(file);
            }

            // Save the file
            M_PVP_Tact.Save(file);
        }
예제 #2
0
 public void Save()
 {
     // Save the file
     M_PVP_Tact.Save(_file);
 }