24 lines
402 B
C#
24 lines
402 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using TMPro;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class TopPanel : BasePanel
|
|
{
|
|
//人物境界
|
|
public Text txtRealm;
|
|
//灵气
|
|
public Text txtAura;
|
|
//战斗力
|
|
public TextMeshProUGUI txtFighting;
|
|
//灵石
|
|
public Text txtStone;
|
|
//仙玉
|
|
public Text txtFairy;
|
|
|
|
public override void Init()
|
|
{
|
|
}
|
|
}
|