Files
RedHotRoast-ios/Assets/Scripts/ModuleUI/Loading/LoadingCtrl.cs
T

19 lines
363 B
C#
Raw Normal View History

namespace LoveLegend
2026-04-22 09:52:55 +08:00
{
public class LoadingCtrl : BaseCtrl
{
public static LoadingCtrl Instance { get; private set; }
private LoadingModel model;
protected override void OnInit()
{
Instance = this;
}
protected override void OnDispose()
{
Instance = null;
}
}
}