Files
Fishing2/Assets/Scripts/NBC/Runtime/UI/Event/UIEvent.cs
2025-07-03 14:16:18 +08:00

12 lines
171 B
C#

namespace NBC.Event
{
public struct UIHideEvent
{
public UIPanel panel;
}
public struct UIShowEvent
{
public UIPanel panel;
}
}