Ejemplo n.º 1
0
 public void MoveShips()
 {
     if (Ships.Count > 0)
     {
         Ships.ForEach(s => s.Move());
         Ships.RemoveAll(s => s.location == null);
     }
 }