Files
MiniGame_Unity_GP/Assets/Scripts/ModuleUI/FlowerUnlockItem/FlowerUnlockItemCtrl.cs
T
2026-07-06 16:27:14 +08:00

25 lines
568 B
C#

namespace TowerClimberChronicles
{
public class FlowerUnlockItemCtrl : BaseCtrl
{
public static FlowerUnlockItemCtrl Instance { get; private set; }
private FlowerUnlockItemModel model;
#region 生命周期
protected override void OnInit()
{
Instance = this;
//model = ModuleManager.Instance..GetModel(ModelConst.FlowerUnlockItemModel) as FlowerUnlockItemModel;
}
protected override void OnDispose()
{
Instance = null;
}
#endregion
}
}