Files
GameJamDungeon/Zennysoft.Game.Ma.Implementation/Player/State/PlayerLogic.Output.cs
2025-03-09 12:24:30 -07:00

17 lines
301 B
C#

namespace Zennysoft.Ma.Adapter;
public partial class PlayerLogic
{
public static class Output
{
public static class Animations
{
public readonly record struct Attack;
}
public readonly record struct ThrowItem;
public readonly record struct Move(float delta);
}
}