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; } } }