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