neon-sprawl/server/NeonSprawl.Server/Game/Gathering/ResourceYieldRow.cs

8 lines
259 B
C#

namespace NeonSprawl.Server.Game.Gathering;
/// <summary>One validated yield row from <c>content/resource-nodes/*_resource_yields.json</c> (NEO-58).</summary>
public sealed record ResourceYieldRow(
string NodeDefId,
string ItemId,
int Quantity);