Exemplo n.º 1
0
 public PatrolState(ICleverUnit self)
     : base(CleverUnitStateEnum.Patrol, self)
 {
 }
Exemplo n.º 2
0
 protected UnitCompositeStateBase(CleverUnitStateEnum state, ICleverUnit self)
     : base(state, self)
 {
 }
Exemplo n.º 3
0
 public FleeState(ICleverUnit self)
     : base(CleverUnitStateEnum.Flee, self)
 {
 }
Exemplo n.º 4
0
 public AttackState(ICleverUnit self)
     : base(CleverUnitStateEnum.Attack, self)
 {
 }
Exemplo n.º 5
0
 public IdleState(ICleverUnit self)
     : base(CleverUnitStateEnum.Idle, self)
 {
 }
Exemplo n.º 6
0
 public MoveToState(ICleverUnit self)
     : base(CleverUnitStateEnum.MoveTo, self)
 {
 }