Added the system from trail

This commit is contained in:
Sebastian Bularca
2026-04-19 12:25:49 +02:00
parent 47ee77f272
commit 89e36b4df9
57 changed files with 2160 additions and 15 deletions

View File

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