using NeonSprawl.Server.Game.Encounters;
namespace NeonSprawl.Server.Game.Quests;
/// Composite completion rewards on (NEO-125, NEO-134).
public sealed record QuestRewardBundleRow(
IReadOnlyList ItemGrants,
IReadOnlyList SkillXpGrants,
IReadOnlyList ReputationGrants)
{
public QuestRewardBundleRow(
IReadOnlyList itemGrants,
IReadOnlyList skillXpGrants)
: this(itemGrants, skillXpGrants, [])
{
}
}