Files
PerfectTidy_untiy_ios/Assets/Scripts/ModuleUI/LanguageView/LanguageViewCtrl.cs
T

26 lines
431 B
C#
Raw Normal View History

2026-06-12 10:11:36 +08:00
namespace LoveLegend
{
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
}
}