/// <summary> /// Sets the current state /// </summary> /// <typeparam name="T">the state</typeparam> public void SetCurrentState <T>() where T : IState { _fsm.SetCurrentState <T>(); }