using AlicizaX; namespace GameLogic.Event { public readonly struct TestUIOpenEvent:IEventArgs { public readonly string UIName; public readonly bool State; public TestUIOpenEvent(string uiName, bool state) { UIName = uiName; State = state; } } }