Exemplo n.º 1
0
 public AIStateWander(AStateMachineMobile machine, int id)
     : base(machine, id)
 {
     //defaults for behavioural values
     DistanceTolerance = 1f;
     CriticalHealthPercentage = 60;
 }
Exemplo n.º 2
0
 public AIStateGetHealth(AStateMachineMobile machine, int id)
     : base(machine, id)
 {
 }
Exemplo n.º 3
0
 public AIStateHide(AStateMachineMobile machine, int id)
     : base(machine, id)
 {
 }
Exemplo n.º 4
0
 public AStateMobile(AStateMachineMobile machine, int id)
 {
     StateMachine = machine;
     ID = id;
 }
Exemplo n.º 5
0
 public AIStateCombat(AStateMachineMobile machine, int id)
     : base(machine, id)
 {
 }