Files
GameJamDungeon/Zennysoft.Game.Ma.Implementation/UI/InGameUI/state/InGameUILogic.Input.cs
2025-03-09 12:24:30 -07:00

12 lines
302 B
C#

namespace Zennysoft.Ma.Adapter;
public partial class InGameUILogic
{
public static class Input
{
public readonly record struct ShowMinimap;
public readonly record struct HideMinimap;
public readonly record struct ShowInventory;
public readonly record struct HideInventory;
}
}