Files
Fishing2/Assets/Scripts/NBC/Runtime/UI/Utils/UIRunner.cs
2025-07-03 14:16:18 +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
}
}