Beispiel #1
0
    public void init()
    {
        this.fsm_ = new FSM_C();

        GameState state = new DemoMainState();

        this.fsm_.addState("Game", state, "");

        this.fsm_.init("Game");
    }
Beispiel #2
0
 override public void init()
 {
     this.fsm_ = new FSM_C();
 }