| using System.Collections; | 
| using System.Collections.Generic; | 
| using UnityEngine; | 
| using UnityEngine.UI; | 
|   | 
| /// <summary> | 
| /// 公会捐赠详情界面:排序后做排名显示 | 
| /// </summary> | 
| public class GuildDonateDetailWin : UIBase | 
| { | 
|     [SerializeField] ScrollerController scroller; | 
|     [SerializeField] Text myRankText; | 
|     [SerializeField] Text myTotalCountText; | 
|   | 
|   | 
|   | 
|     protected override void OnPreOpen() | 
|     { | 
|         Display(); | 
|     } | 
|   | 
|     protected override void OnPreClose() | 
|     { | 
|     } | 
|   | 
|     void Display() | 
|     { | 
|   | 
|     } | 
| } |