Files
GameJamDungeon/src/player/state/PlayerLogic.Input.cs
2024-08-23 00:39:15 -07:00

21 lines
414 B
C#

using Godot;
namespace GameJamDungeon
{
public partial class PlayerLogic
{
public static class Input
{
public readonly record struct PhysicsTick(double Delta);
public readonly record struct Moved(Vector3 GlobalPosition);
public readonly record struct Enable;
public readonly record struct Attack;
public readonly record struct AttackAnimationFinished;
}
}
}