Files
GameJamDungeon/Zennysoft.Game.Ma.Implementation/Player/State/PlayerLogic.Input.cs
2026-02-12 22:42:18 -08:00

18 lines
310 B
C#

using Godot;
namespace Zennysoft.Ma.Adapter;
public partial class PlayerLogic
{
public static class Input
{
public readonly record struct PhysicsTick(double Delta);
public readonly record struct Enable;
public readonly record struct Attack;
public readonly record struct Die;
}
}