30 lines
501 B
C#
30 lines
501 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
|
|
namespace BallKingdomCrush
|
|
{
|
|
public class AdcomingModel : BaseModel
|
|
{
|
|
#region 生命周期
|
|
protected override void OnInit()
|
|
{
|
|
}
|
|
|
|
protected override void OnDispose()
|
|
{
|
|
}
|
|
#endregion
|
|
|
|
#region 消息
|
|
protected override void AddListener()
|
|
{
|
|
|
|
}
|
|
protected override void RemoveListener()
|
|
{
|
|
|
|
}
|
|
#endregion
|
|
}
|
|
} |