19 lines
368 B
C#
19 lines
368 B
C#
namespace FlowerPower
|
|
{
|
|
public class GuideViewCtrl : BaseCtrl
|
|
{
|
|
public static GuideViewCtrl Instance { get; private set; }
|
|
|
|
private LoadingModel model;
|
|
|
|
protected override void OnInit()
|
|
{
|
|
Instance = this;
|
|
}
|
|
|
|
protected override void OnDispose()
|
|
{
|
|
Instance = null;
|
|
}
|
|
}
|
|
} |