forked from Shardstone/trail-into-darkness
15 lines
356 B
C#
15 lines
356 B
C#
using TMPro;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace Nox.Game.UI {
|
|
public class PartyMemberSlot : MonoBehaviour {
|
|
public Image portrait;
|
|
public Image healthBar;
|
|
public Image manaBar;
|
|
public TextMeshProUGUI nameText;
|
|
public TextMeshProUGUI healthText;
|
|
public TextMeshProUGUI manaText;
|
|
}
|
|
}
|