16 lines
319 B
C#
16 lines
319 B
C#
using Chickensoft.Introspection;
|
|
|
|
namespace Zennysoft.Ma.Adapter;
|
|
|
|
public partial class InGameUILogic
|
|
{
|
|
public partial record State
|
|
{
|
|
[Meta]
|
|
public partial record Active : State, IGet<Input.ShowInventory>
|
|
{
|
|
public Transition On(in Input.ShowInventory input) => To<InventoryOpen>();
|
|
}
|
|
}
|
|
}
|