using System;
|
using UnityEngine;
|
using UnityEngine.UI;
|
|
|
namespace vnxbqy.UI
|
{
|
public class HowToPlayPushCoinWin : HowToPlayWin
|
{
|
|
HowToPlayModel model {
|
get { return ModelCenter.Instance.GetModel<HowToPlayModel>(); }
|
}
|
|
protected override void AddListeners()
|
{
|
base.AddListeners();
|
}
|
|
protected override void BindController()
|
{
|
|
}
|
|
protected override void OnAfterClose()
|
{
|
}
|
|
protected override void OnAfterOpen()
|
{
|
base.OnAfterOpen();
|
}
|
|
protected override void OnPreClose()
|
{
|
|
}
|
|
protected override void OnPreOpen()
|
{
|
model.ruleId = 97;
|
base.OnPreOpen();
|
}
|
|
}
|
}
|