Exemplo n.º 1
0
 public GoToTargetLeaf(WarriorUnit unit)
 {
     mUnit = unit;
 }
Exemplo n.º 2
0
 public LockTargetLeaf(WarriorUnit unit, bool force)
 {
     mUnit  = unit;
     mForce = force;
 }
Exemplo n.º 3
0
 public CheckStrategyLeaf(WarriorUnit unit, Strategy strategy)
 {
     mUnit     = unit;
     mStrategy = strategy;
 }
Exemplo n.º 4
0
 public AttackOrder(WarriorUnit unit, RtsGameObject target)
 {
     mUnit   = unit;
     mTarget = target;
 }
Exemplo n.º 5
0
 public CheckTargetInRangeLeaf(WarriorUnit unit)
 {
     mUnit = unit;
 }
Exemplo n.º 6
0
 public KillTargetLeaf(WarriorUnit unit)
 {
     mUnit        = unit;
     mAttackTimer = TimeSpan.Zero;
 }