mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 10:25:35 +00:00
13 lines
No EOL
325 B
C#
13 lines
No EOL
325 B
C#
using Godot;
|
|
|
|
namespace Cirno.Scripts.Components.FSM.Player;
|
|
|
|
public partial class PlayerStorageModule : Node2D
|
|
{
|
|
[Export]
|
|
public PlayerFSMProxy Root { get; private set; }
|
|
public Node2D RootAsNode => Root;
|
|
public Vector2 FacingDirection { get; set; }
|
|
public Vector2 AimingDirection { get; set; }
|
|
|
|
} |