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