mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 11:15:33 +00:00
12 lines
202 B
C#
12 lines
202 B
C#
|
|
using System;
|
||
|
|
using Godot;
|
||
|
|
|
||
|
|
namespace Cirno.Scripts.Components.FSM;
|
||
|
|
|
||
|
|
public partial class PlayerStateMachine : ActorStateMachine
|
||
|
|
{
|
||
|
|
public override void _Ready()
|
||
|
|
{
|
||
|
|
base._Ready();
|
||
|
|
}
|
||
|
|
}
|