Cheat buttons

This commit is contained in:
Marco 2025-03-12 16:31:53 +01:00
commit e637f69ce6
7 changed files with 98 additions and 16 deletions

View file

@ -6,5 +6,15 @@ namespace Cirno.Scripts.Components.FSM;
public partial class PlayerStateMachine : StateMachineBase<PlayerState, CharacterBody2D>
{
[Export] public override PlayerState InitialState { get; protected set; } = PlayerState.Init;
public void RefillHealth()
{
GD.Print("Refilling health");
}
public void RefilleShield()
{
GD.Print("Refilling shield");
}
}