h5sdk提交

This commit is contained in:
2026-07-06 16:31:08 +08:00
parent 761e670f01
commit 3c0298f19f
1183 changed files with 107360 additions and 42666 deletions
@@ -0,0 +1,25 @@
using BingoBrain.Core;
namespace BingoBrain
{
public class SaveingPotCtrl : BaseCtrl
{
public static SaveingPotCtrl Instance { get; private set; }
private SaveingPotModel model;
#region
protected override void OnInit()
{
Instance = this;
//model = ModuleManager.Instance..GetModel(ModelConst.SaveingPotModel) as SaveingPotModel;
}
protected override void OnDispose()
{
Instance = null;
}
#endregion
}
}