Пример #1
0
 /// <summary>
 /// Clone this team
 /// </summary>
 public Team Clone()
 {
     return(new Team()
     {
         Id = Id,
         Name = Name,
         Flag = Flag.Clone(),
         Ships = Ships.Select(s => s.Clone()).ToList(),
         Projectiles = Projectiles.Select(p => p.Clone()).ToList(),
         FlagCaptures = FlagCaptures,
         Kills = Kills
     });
 }