using vnxbqy.UI;
|
using System;
|
|
public class MergeServerActivityModel : ILModel<MergeServerActivityModel>
|
{
|
public event Action SelectEvent;
|
|
private int m_SelectType;
|
public int selectType
|
{
|
get { return m_SelectType; }
|
set
|
{
|
if (m_SelectType != value)
|
{
|
m_SelectType = value;
|
SelectEvent?.Invoke();
|
}
|
}
|
|
}
|
public Redpoint redpoint = new Redpoint(MainRedPoint.hfhdRedPoint);
|
protected override void Init()
|
{
|
|
}
|
|
protected override void UnInit()
|
{
|
|
}
|
|
|
|
}
|