Ejemplo n.º 1
0
 public GunTower(GridPosition position, int ammo = 100) : base(position, ammo)
 {
 }
Ejemplo n.º 2
0
 public MicrowaveTower(GridPosition position, int ammo = 100) : base(position, ammo)
 {
 }
Ejemplo n.º 3
0
 public GameTower(GridPosition position, int ammo)
 {
     m_position = position;
     m_ammo     = ammo;
     m_targets  = new LinkedList <GameAgent>();
 }
Ejemplo n.º 4
0
 public MissileTower(GridPosition position, int ammo = 100) : base(position, ammo)
 {
 }