using System.Collections.Generic; using Godot; namespace Cirno.Scripts.Components.FSM; public partial class NewPlayerStateMachine : StateMachineBase { [Export] public override PlayerState InitialState { get; protected set; } = PlayerState.Init; }