using System.Collections;
|
using System.Collections.Generic;
|
using UnityEngine;
|
using UnityEngine.UI;
|
|
/// <summary>
|
/// 公会基础界面
|
/// </summary>
|
public class GuildBaseWin : UIBase
|
{
|
[SerializeField] Button rankBtn;
|
|
protected override void InitComponent()
|
{
|
|
}
|
|
|
protected override void OnPreOpen()
|
{
|
}
|
|
protected override void OnPreClose()
|
{
|
}
|
|
|
public override void Refresh()
|
{
|
|
}
|
|
|
}
|