9 lines
307 B
C#
9 lines
307 B
C#
namespace NeonSprawl.Server.Game.Gathering;
|
|
|
|
/// <summary>One validated <c>ResourceNodeDef</c> row from <c>content/resource-nodes/*_resource_nodes.json</c> (NEO-58).</summary>
|
|
public sealed record ResourceNodeDefRow(
|
|
string NodeDefId,
|
|
string DisplayName,
|
|
string GatherLens,
|
|
int MaxGathers);
|