Exemplo n.º 1
0
        public void Buy()
        {
            level = 1;
            upgradeCosts = (int)(costs * 1.0f);

            levelZero = new Tower(this);
        }
Exemplo n.º 2
0
 public Tower(Tower t)
     : this(t.GetPosition(),t.GetTexture(),t.GetScale(),t.range,t.costs,t.shootingInterval,t.projectileType)
 {
 }