Files
GameJamDungeon/Zennysoft.Game.Ma.Implementation/UI/InGameUI/state/InGameUILogic.Input.cs
2025-08-08 23:43:57 -07:00

10 lines
208 B
C#

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