Exemplo n.º 1
0
 public void AddUnit(IMoveToPoint unit)
 {
     _moves.Add(unit);
 }
Exemplo n.º 2
0
 public void RemoveUnit(IMoveToPoint unit)
 {
     _moves.Remove(unit);
 }
Exemplo n.º 3
0
 public EnemyMoveController(IMoveToPoint move, Transform target)
 {
     CanExecute = true;
     _move      = move;
     _target    = target;
 }