Esempio n. 1
0
 public void updateBoatValues(Boat boat, int index)
 {
     this.boats[index].Length = boat.Length;
     this.boats[index].Type   = boat.Type;
 }
Esempio n. 2
0
 public void addBoat(Boat boat)
 {
     boats.Add(boat);
 }