Ejemplo n.º 1
0
 public void SetFormationRow(Ship selctedship, uint amountOfShips, uint Rowposition)
 {
     if (Rowposition < 6)
     {
         rows[Rowposition] = new FormationRow(selctedship, amountOfShips);
     }
     else
     {
         throw new Exception("Invalid Row");
     }
 }
Ejemplo n.º 2
0
        public BattleFormation(string name)

        {
            this.name = name;
            rows      = new FormationRow[6];
        }