Fixed teleporters

This commit is contained in:
Maddo 2025-03-05 12:27:15 +01:00
commit 49cfb52d20
15 changed files with 102 additions and 84 deletions

View file

@ -0,0 +1,10 @@
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; }
}