Exemplo n.º 1
0
        public void LoadGame()
        {
            FileData data = SaveSystemFunction.LoadGameFile(this);

            if (data == null)
            {
                return;
            }
            print("Gamefile Loaded To Menu:" + gameData.fileNumber);
            LoadVariables(data);
        }
Exemplo n.º 2
0
 public void DeleteGame()
 {
     SaveSystemFunction.DeleteGameFile(this);
 }
Exemplo n.º 3
0
 public void SaveGame()
 {
     SaveSystemFunction.SaveGameFile(this);
 }