Files
MiniGame_Unity_GP/Assets/Scripts/ModuleUI/NetLoading/NetLoadingCtrl.cs
T
2026-07-06 16:27:14 +08:00

19 lines
384 B
C#

namespace TowerClimberChronicles
{
public class NetLoadingCtrl : BaseCtrl
{
public static NetLoadingCtrl Instance { get; private set; }
private NetLoadingModel model;
protected override void OnInit()
{
Instance = this;
}
protected override void OnDispose()
{
Instance = null;
}
}
}