Files

42 lines
892 B
C#
Raw Permalink Normal View History

namespace ZooMatch
2026-06-02 10:26:44 +08:00
{
public class PayloadingCtrl : BaseCtrl
{
public static PayloadingCtrl Instance { get; private set; }
private PayloadingModel model;
#region 生命周期
protected override void OnInit()
{
Instance = this;
//model = ModuleManager.Instance..GetModel(ModelConst.PayloadingModel) as PayloadingModel;
}
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
}
}