using System; using Godot; namespace Cirno.Scripts.Components.FSM; public partial class PlayerStateMachine : ActorStateMachine { [Export] public PlayerState InitialState { get; private set; } public override void _Ready() { base._Ready(); this.SetState((int)InitialState); } }