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