public StateMachine(StateMachineOptions options)
 {
     _options = options ?? new StateMachineOptions();
 }
 public StateMachine()
 {
     _options = new StateMachineOptions();
 }