17 lines
323 B
C#
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;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|