Files

25 lines
443 B
C#
Raw Permalink Normal View History

2026-06-15 11:34:31 +08:00
using BingoBrain.Core;
namespace BingoBrain
{
public class BingoHallCtrl : BaseCtrl
{
public static BingoHallCtrl Instance { get; private set; }
private BingoHallModel model;
#region 生命周期
protected override void OnInit()
{
Instance = this;
}
protected override void OnDispose()
{
Instance = null;
}
#endregion
}
}