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