1
0
Fork 0
forked from aly/qstbak
qstbak/Questionable/Questionable.Data/QuestChainGraph.cs
2026-08-17 20:29:32 +10:00

6 lines
325 B
C#

using System.Collections.Generic;
using Questionable.Model.Questing;
namespace Questionable.Data;
internal sealed record QuestChainGraph(Dictionary<QuestId, List<QuestId>> Prerequisites, Dictionary<QuestId, List<QuestId>> Dependents, Dictionary<QuestId, int> Layers, List<List<QuestId>> LayerOrder, QuestId SelectedQuest);