Files
RedHotRoast-ios/Assets/Scripts/ModuleUI/SaveingPot/SaveingPotCtrl.cs
T
2026-04-22 09:52:55 +08:00

23 lines
436 B
C#

using System.Collections;
using System.Collections.Generic;
namespace FlowerPower
{
public class SaveingPotCtrl : BaseCtrl
{
public static SaveingPotCtrl Instance { get; private set; }
private SaveingPotModel model;
protected override void OnInit()
{
Instance = this;
}
protected override void OnDispose()
{
Instance = null;
}
}
}