using Godot; namespace Cirno.Scripts.Components.FSM._3DPlayer; public partial class IsoPlayerStateMachine : StateMachineBase { [Export] public override PlayerState InitialState { get; protected set; } = PlayerState.Init; [Export] public IsoPlayerStorageModule Storage { get; private set; } }