using System; using Godot; namespace Cirno.Scripts.Components.FSM; public partial class PlayerFSMProxy : CharacterBody2D { [Export] public PlayerStateMachine PlayerFSM { get; private set; } [Export] public InteractionController InteractionController { get; private set; } }