Esempio n. 1
0
 public HeroOrder(HeroController destination, DTRMVector2 targetPosition) : base(destination)
 {
     orderType           = HeroOrderType.Move;
     this.targetPosition = targetPosition;
 }
Esempio n. 2
0
 public HeroOrder(HeroController destination, DTRMVector2 targetPosition)
     : base(destination)
 {
     orderType = HeroOrderType.Move;
     this.targetPosition = targetPosition;
 }
Esempio n. 3
0
 public HeroOrder(HeroController destination, Health targetVictim) : base(destination)
 {
     orderType         = HeroOrderType.Attack;
     this.targetVictim = targetVictim;
 }
Esempio n. 4
0
 public HeroOrder(HeroController destination, Health targetVictim)
     : base(destination)
 {
     orderType = HeroOrderType.Attack;
     this.targetVictim = targetVictim;
 }