Animatroller.Framework.Controller.IntStateMachine.IntStateMachine C# (CSharp) Method

IntStateMachine() public method

public IntStateMachine ( string name ) : System
name string
return System
        public IntStateMachine(string name)
        {
            this.name = name;
            this.stateConfigs = new Dictionary<int, Sequence.SequenceJob>();
            this.currentJob = null;
            this.currentState = -1;
            this.hold = true;
            this.length = 0;

            Executor.Current.Register(this);
        }