Files
CaptainDiceDubloons_IOS_unity/Assets/Scripts/ModuleUI/EggView/EggViewCtrl.cs
T
2026-05-20 12:01:19 +08:00

41 lines
743 B
C#

namespace ChillConnect
{
public class EggViewCtrl : BaseCtrl
{
public static EggViewCtrl Instance { get; private set; }
private EggViewModel model;
#region 生命周期
protected override void OnInit()
{
Instance = this;
}
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
}
}