Ejemplo n.º 1
0
 private void SelectBattleship()
 {
     ShipLength = 5;
     WhichShip.SetAllValues(false);
     WhichShip[0] = true;
 }
Ejemplo n.º 2
0
 private void SelectSubmarine()
 {
     ShipLength = 2;
     WhichShip.SetAllValues(false);
     WhichShip[3] = true;
 }
Ejemplo n.º 3
0
 private void SelectCruiser()
 {
     ShipLength = 4;
     WhichShip.SetAllValues(false);
     WhichShip[1] = true;
 }
Ejemplo n.º 4
0
 private void SelectDestroyer()
 {
     ShipLength = 3;
     WhichShip.SetAllValues(false);
     WhichShip[2] = true;
 }