Added part of the encounter triggering system

This commit is contained in:
Sebastian Bularca
2026-04-27 00:01:15 +02:00
parent f117ddb914
commit ea6c28bfba
28 changed files with 20336 additions and 185 deletions

View File

@@ -0,0 +1,9 @@
using TMPro;
using UnityEngine;
namespace Nox.Game {
public class AnswerPrefab : MonoBehaviour {
public TextMeshProUGUI number;
public TextMeshProUGUI dialogText;
}
}