forked from Shardstone/trail-into-darkness
12 lines
244 B
C#
12 lines
244 B
C#
using TMPro;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace Nox.UI {
|
|
public class StatReference : MonoBehaviour {
|
|
public TextMeshProUGUI statName;
|
|
public TextMeshProUGUI statValue;
|
|
public Image statBar;
|
|
}
|
|
}
|