If I've read the docs right, we can do something like this... ```cs private StateMachine<States, Events> stateMachine; private void Awake() { stateMachine = new() { // ... } } ```