1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| //--------------------------------------------------------
| // [Author]: 玩个游戏
| // [ Date ]: Wednesday, September 26, 2018
| //--------------------------------------------------------
| using UnityEngine;
| using UnityEngine.UI;
|
| public class GuildBossAwardCell : MonoBehaviour
| {
| [SerializeField] Text numText;
|
|
| public void Display(int num)
| {
| numText.text = num.ToString();
| }
| }
|
|
|
|
|
|
|