Files
RedHotRoast-ios/Assets/Scripts/ModuleUI/ThreeDaysGift/ThreeDaysGiftCtrl.cs
T

23 lines
445 B
C#

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