Пример #1
0
 public HeroOrder(HeroController destination, DTRMVector2 targetPosition) : base(destination)
 {
     orderType           = HeroOrderType.Move;
     this.targetPosition = targetPosition;
 }
Пример #2
0
 public HeroOrder(HeroController destination, DTRMVector2 targetPosition)
     : base(destination)
 {
     orderType = HeroOrderType.Move;
     this.targetPosition = targetPosition;
 }
Пример #3
0
 public HeroOrder(HeroController destination, Health targetVictim) : base(destination)
 {
     orderType         = HeroOrderType.Attack;
     this.targetVictim = targetVictim;
 }
Пример #4
0
 public HeroOrder(HeroController destination, Health targetVictim)
     : base(destination)
 {
     orderType = HeroOrderType.Attack;
     this.targetVictim = targetVictim;
 }