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