Files
BallCrushBest_GP/Assets/Scripts/ModuleUI/PersonView/PersonViewCtrl.cs
T
2026-04-20 12:06:34 +08:00

50 lines
765 B
C#

namespace BallKingdomCrush
{
public class PersonViewCtrl : BaseCtrl
{
public static PersonViewCtrl Instance { get; private set; }
private PersonViewModel 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
}
}