Files
BingoGrassland/Assets/BingoBrain/ModuleUI/Broadcast/BroadcastCtrl.cs
T

23 lines
454 B
C#
Raw Normal View History

2026-04-20 13:49:36 +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;
}
}
}