Files

23 lines
454 B
C#
Raw Permalink Normal View History

2026-06-15 11:34:31 +08:00
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;
}
}
}