25 lines
434 B
C#
25 lines
434 B
C#
using BingoBrain.Core;
|
|
|
|
namespace BingoBrain
|
|
{
|
|
public class JThinkCtrl : BaseCtrl
|
|
{
|
|
public static JThinkCtrl Instance { get; private set; }
|
|
|
|
private JThinkModel model;
|
|
|
|
#region 生命周期
|
|
|
|
protected override void OnInit()
|
|
{
|
|
Instance = this;
|
|
}
|
|
|
|
protected override void OnDispose()
|
|
{
|
|
Instance = null;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |