Example #1
0
 public ChargeAttack(AttackTesla attack, Target target, bool forceAttack, Color?targetLineColor = null)
 {
     this.attack          = attack;
     this.target          = target;
     this.forceAttack     = forceAttack;
     this.targetLineColor = targetLineColor;
 }
Example #2
0
 public ChargeAttack(AttackTesla attack, Target target, bool forceAttack)
 {
     this.attack      = attack;
     this.target      = target;
     this.forceAttack = forceAttack;
 }
Example #3
0
 public ChargeFire(AttackTesla attack, Target target)
 {
     this.attack = attack;
     this.target = target;
 }