2026-06-25 15:22:28 +08:00
|
|
|
namespace ChillConnect
|
|
|
|
|
{
|
|
|
|
|
public class ResurgenceCtrl : BaseCtrl
|
|
|
|
|
{
|
|
|
|
|
public static ResurgenceCtrl Instance { get; private set; }
|
|
|
|
|
|
|
|
|
|
private ResurgenceModel model;
|
|
|
|
|
|
|
|
|
|
protected override void OnInit()
|
|
|
|
|
{
|
|
|
|
|
Instance = this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnDispose()
|
|
|
|
|
{
|
|
|
|
|
Instance = null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|