Files
2026-02-09 20:10:14 +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
}
}