cirnogodot/Scripts/Components/FSM/Player/PlayerStateBase.cs
2025-03-05 10:55:14 +01:00

8 lines
No EOL
161 B
C#

using Godot;
namespace Cirno.Scripts.Components.FSM.Player;
public abstract partial class PlayerStateBase : BaseState<PlayerState, CharacterBody2D>
{
}