6 lines
325 B
C#
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);
|