Пример #1
0
 public LoadConfig()
 {
     file = new FileOperation();
     file.SetPath("config.txt");
     file.Open();
 }
Пример #2
0
 public PlayerList()
 {
     file = new FileOperation();
     file.SetPath(Config.Instance.PathPlayer);
     file.Open();
 }
Пример #3
0
 public PlayerDataSave(List <Player> playerList)
 {
     this.playerList = playerList;
     file            = new FileOperation();
     pathToSave      = Config.Instance.PathSave;
 }