Beispiel #1
0
 public bool Equals(User user)
 {
     return this.id == user.id;
 }
 public AssassinGame(int id, int maxplayers, User creator, DateTime time, int gameType, string name, List<Player>players , int kills)
     : base(id, creator, time, gameType, name, players, maxplayers)
 {
     this.kills = kills;
 }