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