新增兑换

This commit is contained in:
2026-05-19 14:16:52 +08:00
parent 59a6b0dec4
commit defb4f0280
37 changed files with 906 additions and 20 deletions
@@ -0,0 +1,25 @@
using BingoBrain.Core;
namespace BingoBrain
{
public class ExchangeCtrl : BaseCtrl
{
public static ExchangeCtrl Instance { get; private set; }
private ExchangeModel model;
#region
protected override void OnInit()
{
Instance = this;
//model = ModuleManager.Instance..GetModel(ModelConst.ExchangeModel) as ExchangeModel;
}
protected override void OnDispose()
{
Instance = null;
}
#endregion
}
}