Exemplo n.º 1
0
 public RepairShip(Coords coords, int speed, int hitPoints, int actionRange, int repairAmount) : base(coords, speed, hitPoints)
 {
     ActionRange  = actionRange;
     RepairAmount = repairAmount;
 }
Exemplo n.º 2
0
 public Ship(Coords coords, int speed, int hitPoints)
 {
     Coords    = coords;
     Speed     = speed;
     hitPoints = HitPoints;
 }
Exemplo n.º 3
0
 public WarShip(Coords coords, int speed, int hitPoints, int actionRange, int shotDamage) : base(coords, speed, hitPoints)
 {
     ActionRange = actionRange;
     ShotDamage  = shotDamage;
 }