using System.Collections;
|
using System.Collections.Generic;
|
using UnityEngine;
|
using UnityEngine.UI;
|
|
/// <summary>
|
/// 坐骑
|
/// </summary>
|
public class HorseSuccessWin : UIBase
|
{
|
[SerializeField] Button bagBtn;
|
|
protected override void InitComponent()
|
{
|
|
}
|
|
protected override void OnPreOpen()
|
{
|
|
}
|
|
protected override void OnPreClose()
|
{
|
|
}
|
|
}
|