Ejemplo n.º 1
0
 public Bullet(Vector2 position, Texture2D texture, Enemy target, int damage, Modifications modification, Tower towerParent) : base(position, texture)
 {
     this.target       = target;
     this.damage       = damage;
     this.modification = modification;
     this.towerParent  = towerParent;
 }