cirnogodot/Scripts/Components/FSM/PlayerStateMachine.cs

10 lines
265 B
C#
Raw Normal View History

2025-02-28 13:50:52 +01:00
using System;
using Godot;
namespace Cirno.Scripts.Components.FSM;
2025-03-05 10:55:14 +01:00
public partial class PlayerStateMachine : StateMachineBase<PlayerState, CharacterBody2D>
2025-02-28 13:50:52 +01:00
{
2025-03-05 10:55:14 +01:00
[Export] public override PlayerState InitialState { get; protected set; } = PlayerState.Init;
2025-02-28 13:50:52 +01:00
}