예제 #1
0
파일: FsmDemo.cs 프로젝트: Boxemond/Fsm
    private void Awake()
    {
        mFsm = Fsm <FsmDemo> .Create("FsmTest", this, this, new NormalState(), new TiredState(), new DeadState());

        mFsm.Start <NormalState>();
    }