yyl
2025-12-02 75333b0174316e253d140f77bf5b79f00ced8ff0
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()
    {
        
 
    }
 
 
}