45 lines
925 B
C#
45 lines
925 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace RedHotRoast
|
|
{
|
|
public class SecretUnlockCtrl : BaseCtrl
|
|
{
|
|
public static SecretUnlockCtrl Instance { get; private set; }
|
|
|
|
private SecretUnlockModel model;
|
|
|
|
#region 生命周期
|
|
protected override void OnInit()
|
|
{
|
|
Instance = this;
|
|
//model = ModuleManager.Instance..GetModel(ModelConst.SecretUnlockModel) as SecretUnlockModel;
|
|
}
|
|
|
|
protected override void OnDispose()
|
|
{
|
|
Instance = null;
|
|
}
|
|
#endregion
|
|
|
|
#region 消息
|
|
protected override void AddListener()
|
|
{
|
|
|
|
}
|
|
protected override void RemoveListener()
|
|
{
|
|
|
|
}
|
|
|
|
protected override void AddServerListener()
|
|
{
|
|
|
|
}
|
|
protected override void RemoveServerListener()
|
|
{
|
|
|
|
}
|
|
#endregion
|
|
}
|
|
} |