Files
Fishing2/Assets/Scripts/NBC.Fantasy/Runtime/UI/Utils/UIRunner.cs
2025-11-12 17:24:02 +08:00

16 lines
258 B
C#

namespace NBC
{
internal static class UIRunner
{
#region Static
public static readonly Runner Def = new Runner();
public static void Update()
{
Def.Process();
}
#endregion
}
}