示例#1
0
        protected void InitTransition(TState src, TEvent eventID, TState dst)
        {
            FSMState state = this.GetState(src);

            state.AddTransition(eventID.GetHashCode(), this.GetState(dst));
        }