lcy
4 天以前 77edc812d88a7f596848d8fba94d49a5f127eb5d
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()
    {
        
 
    }
 
 
}