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