|
namespace NeonSprawl.Server.Game.Skills;
|
|
|
|
/// <summary>One validated <c>SkillDef</c> row from <c>content/skills/*.json</c> (NEO-34).</summary>
|
|
public sealed record SkillDefRow(
|
|
string Id,
|
|
string Category,
|
|
string DisplayName,
|
|
IReadOnlyList<string> AllowedXpSourceKinds);
|