Files
trail-into-darkness-demo/Assets/Code/GameState/UI/StatReference.cs
2026-05-19 15:52:04 +02:00

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;
}
}