AlicizaX/Client/Assets/Scripts/Hotfix/GameLogic/Event/TestUIOpenEvent.cs

17 lines
323 B
C#

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;
}
}
}