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

45 lines
925 B
C#
Raw Normal View History

2026-04-22 09:52:55 +08:00
using System.Collections;
using System.Collections.Generic;
namespace RedHotRoast
2026-04-22 09:52:55 +08:00
{
public class SecretDetailCtrl : BaseCtrl
2026-04-22 09:52:55 +08:00
{
public static SecretDetailCtrl Instance { get; private set; }
2026-04-22 09:52:55 +08:00
private SecretDetailModel model;
2026-04-22 09:52:55 +08:00
#region 生命周期
protected override void OnInit()
{
Instance = this;
//model = ModuleManager.Instance..GetModel(ModelConst.SecretDetailModel) as SecretDetailModel;
2026-04-22 09:52:55 +08:00
}
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
}
}