21 lines
657 B
C#
21 lines
657 B
C#
namespace NeonSprawl.Server.Game.Quests;
|
|
|
|
/// <summary>Load-time quest row (NEO-113).</summary>
|
|
public sealed class QuestDefRow(
|
|
string id,
|
|
string displayName,
|
|
IReadOnlyList<string> prerequisiteQuestIds,
|
|
IReadOnlyList<QuestStepDefRow> steps,
|
|
QuestRewardBundleRow? completionRewardBundle = null)
|
|
{
|
|
public string Id { get; } = id;
|
|
|
|
public string DisplayName { get; } = displayName;
|
|
|
|
public IReadOnlyList<string> PrerequisiteQuestIds { get; } = prerequisiteQuestIds;
|
|
|
|
public IReadOnlyList<QuestStepDefRow> Steps { get; } = steps;
|
|
|
|
public QuestRewardBundleRow? CompletionRewardBundle { get; } = completionRewardBundle;
|
|
}
|