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