Ejemplo n.º 1
0
 public MoveState(BaseCharacter c, GenericStateMachine s) : base(c, s)
 {
 }
Ejemplo n.º 2
0
 public DefaultState(BaseCharacter c, GenericStateMachine s) : base(c, s)
 {
 }
Ejemplo n.º 3
0
 public JumpState(BaseCharacter _c, GenericStateMachine _s) : base(_c, _s)
 {
 }
Ejemplo n.º 4
0
 public void InitializeStateMachine()
 {
     m_gameSM = new GenericStateMachine <GameData>();
     m_gameSM.Initialize <GameInitState>();
 }
Ejemplo n.º 5
0
 public DefaultState(BaseCharacter _c, GenericStateMachine _s) : base(_c, _s)
 {
 }
Ejemplo n.º 6
0
 public GenericState(BaseCharacter _c, GenericStateMachine _s)
 {
     _character    = _c;
     _stateMachine = _s;
 }