lcy
7 天以前 9f5b465d0654920e04b7972d5e9192b62f9efbaf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
 
//公会讨伐-其他玩家
public class GuildBossOtherPlayer : MonoBehaviour
{
    [SerializeField] AvatarCell headCell;
    [SerializeField] Text nameText;
    [SerializeField] Text hurtValueText;
    [SerializeField] Image rankImg;
 
    public void Display()
    {
        
 
    }
 
 
}