using UnityEngine; namespace Jovian.EncounterSystem { /// /// Top-level asset that groups multiple references into a single /// browsable unit. Pass one of these to to seed its gating graph. /// [CreateAssetMenu(fileName = "EncountersCollection", menuName = "Jovian/Encounter System/Encounters Collection", order = 0)] public class EncountersCollection : ScriptableObject { /// The tables grouped by this collection. public EncounterTable[] encounterTables; } }