Files
ZooMatch-GP/Assets/Scripts/ModuleUI/LanguageView/LanguageViewCtrl.cs
T

26 lines
454 B
C#
Raw Normal View History

2026-06-02 10:26:44 +08:00
namespace ZooMatch
2026-06-02 10:26:44 +08:00
{
public class LanguageViewCtrl : BaseCtrl
{
public static LanguageViewCtrl Instance { get; private set; }
private LanguageViewModel model;
#region 生命周期
protected override void OnInit()
{
Instance = this;
}
protected override void OnDispose()
{
Instance = null;
}
#endregion
}
}