Files

19 lines
357 B
C#
Raw Permalink Normal View History

2026-06-12 10:11:36 +08:00
namespace LoveLegend
{
public class JoastCtrl : BaseCtrl
{
public static JoastCtrl Instance { get; private set; }
private JoastModel model;
protected override void OnInit()
{
Instance = this;
}
protected override void OnDispose()
{
Instance = null;
}
}
}