Inheritance: OpenRA.Traits.AttackBase, ISync
Ejemplo n.º 1
0
 public SetTarget(AttackOmni attack, Target target, bool allowMove, bool forceAttack)
 {
     this.target      = target;
     this.attack      = attack;
     this.allowMove   = allowMove;
     this.forceAttack = forceAttack;
 }
Ejemplo n.º 2
0
 public SetTarget(AttackOmni attack, Target target, bool allowMove, bool forceAttack, Color?targetLineColor = null)
 {
     this.target          = target;
     this.targetLineColor = targetLineColor;
     this.attack          = attack;
     this.allowMove       = allowMove;
     this.forceAttack     = forceAttack;
 }
Ejemplo n.º 3
0
 public SetTarget(AttackOmni attack, Target target, bool allowMove)
 {
     this.target    = target;
     this.attack    = attack;
     this.allowMove = allowMove;
 }
Ejemplo n.º 4
0
 public SetTarget(AttackOmni attack, Target target)
 {
     this.target = target;
     this.attack = attack;
 }
Ejemplo n.º 5
0
 public SetTarget(AttackOmni attack, in Target target, bool allowMove, bool forceAttack, Color?targetLineColor = null)