12 lines
308 B
C#
12 lines
308 B
C#
namespace Zennysoft.Ma.Godot.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;
|
|
}
|
|
}
|