25 lines
548 B
C#
25 lines
548 B
C#
|
|
using BingoBrain.Core;
|
||
|
|
|
||
|
|
namespace BingoBrain
|
||
|
|
{
|
||
|
|
public class NetLoadingCtrl : BaseCtrl
|
||
|
|
{
|
||
|
|
public static NetLoadingCtrl Instance { get; private set; }
|
||
|
|
|
||
|
|
private NetLoadingModel model;
|
||
|
|
|
||
|
|
#region 生命周期
|
||
|
|
protected override void OnInit()
|
||
|
|
{
|
||
|
|
Instance = this;
|
||
|
|
//model = ModuleManager.Instance..GetModel(ModelConst.NetLoadingModel) as NetLoadingModel;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected override void OnDispose()
|
||
|
|
{
|
||
|
|
Instance = null;
|
||
|
|
}
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
}
|
||
|
|
}
|