Files
Fishing2/Assets/Scripts/NBC/UI/Runtime/Utils/UIRunner.cs

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