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

15 lines
471 B
C#

using Zennysoft.Game.Ma;
namespace Zennysoft.Ma.Adapter;
public partial class InGameUILogic
{
public static class Output
{
public readonly record struct AnnounceMessageOnMainScreen(string Message);
public readonly record struct AnnounceMessageInInventory(string Message);
public readonly record struct RemoveItemFromInventory(InventoryItem Item);
public readonly record struct ShowInventory;
public readonly record struct HideInventory;
}
}