Exemple #1
0
 protected Ship(string name, int energy, ShipMover position, Gun shipGun)
 {
     Name     = name;
     Energy   = energy;
     Position = position;
     ShipGun  = shipGun;
 }
Exemple #2
0
 public WarShip(string name, int energy, ShipMover position, Gun shipGun) : base(name, energy, position, shipGun)
 {
 }