using TMPro; using UnityEngine; using UnityEngine.UI; namespace Jovian.EncounterSystem { /// Shared view scaffold — game code binds an to these widgets. public class EncounterReference : MonoBehaviour { public TextMeshProUGUI encounterName; public TextMeshProUGUI encounterDescription; public Image encounterArt; public Transform encounterOptionsContainer; } }