Exemple #1
0
 public PlayerData(string login, int id)
 {
     Login            = login;
     ID               = id;
     PlayerStats      = new PlayerStats();
     CurrentGameStats = new CurrentGameStats();
 }
Exemple #2
0
 public PlayerData()
 {
     Login            = "******";
     ID               = -1;
     PlayerStats      = new PlayerStats();
     CurrentGameStats = new CurrentGameStats();
 }