15 lines
405 B
C#
15 lines
405 B
C#
namespace NeonSprawl.Server.Game.Encounters;
|
|
|
|
/// <summary>Load-time reward table row (NEO-101).</summary>
|
|
public sealed class RewardTableDefRow(
|
|
string id,
|
|
string displayName,
|
|
IReadOnlyList<RewardGrantRow> fixedGrants)
|
|
{
|
|
public string Id { get; } = id;
|
|
|
|
public string DisplayName { get; } = displayName;
|
|
|
|
public IReadOnlyList<RewardGrantRow> FixedGrants { get; } = fixedGrants;
|
|
}
|