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