public LoadConfig() { file = new FileOperation(); file.SetPath("config.txt"); file.Open(); }
public PlayerList() { file = new FileOperation(); file.SetPath(Config.Instance.PathPlayer); file.Open(); }
public PlayerDataSave(List <Player> playerList) { this.playerList = playerList; file = new FileOperation(); pathToSave = Config.Instance.PathSave; }