23 lines
457 B
C#
23 lines
457 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using BingoBrain.Core;
|
|
|
|
namespace BingoBrain
|
|
{
|
|
public class ResurgenceCtrl : BaseCtrl
|
|
{
|
|
public static ResurgenceCtrl Instance { get; private set; }
|
|
|
|
private ResurgenceModel model;
|
|
|
|
protected override void OnInit()
|
|
{
|
|
Instance = this;
|
|
}
|
|
|
|
protected override void OnDispose()
|
|
{
|
|
Instance = null;
|
|
}
|
|
}
|
|
} |