Files
RedHotRoast-ios/Assets/Scripts/ModuleUI/SecretDetail/SecretDetailCtrl.cs
T

45 lines
925 B
C#

using System.Collections;
using System.Collections.Generic;
namespace RedHotRoast
{
public class SecretDetailCtrl : BaseCtrl
{
public static SecretDetailCtrl Instance { get; private set; }
private SecretDetailModel model;
#region
protected override void OnInit()
{
Instance = this;
//model = ModuleManager.Instance..GetModel(ModelConst.SecretDetailModel) as SecretDetailModel;
}
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
}
}