Files

25 lines
548 B
C#

namespace ZooMatch
{
public class ChatUnlockCtrl : BaseCtrl
{
public static ChatUnlockCtrl Instance { get; private set; }
private ChatUnlockModel model;
#region 生命周期
protected override void OnInit()
{
Instance = this;
//model = ModuleManager.Instance..GetModel(ModelConst.ChatUnlockModel) as ChatUnlockModel;
}
protected override void OnDispose()
{
Instance = null;
}
#endregion
}
}