20 lines
361 B
C#
20 lines
361 B
C#
namespace LoveLegend
|
|
{
|
|
public class RewardCtrl : BaseCtrl
|
|
{
|
|
public static RewardCtrl Instance { get; private set; }
|
|
|
|
private RewardModel model;
|
|
|
|
|
|
protected override void OnInit()
|
|
{
|
|
Instance = this;
|
|
}
|
|
|
|
protected override void OnDispose()
|
|
{
|
|
Instance = null;
|
|
}
|
|
}
|
|
} |