Files
tbd-station-14/Content.Shared/NameIdentifier/NameIdentifierGroupPrototype.cs
Tayrtahn 86aa82f2b6 Cleanup: Remove redundant prototype name specifications (#35793)
* Remove redundant prototype name specifications

* These can stay
2025-03-19 19:30:31 +01:00

26 lines
582 B
C#

using Robust.Shared.Prototypes;
namespace Content.Shared.NameIdentifier;
[Prototype]
public sealed partial class NameIdentifierGroupPrototype : IPrototype
{
[IdDataField]
public string ID { get; private set; } = default!;
/// <summary>
/// Should the identifier become the full name, or just append?
/// </summary>
[DataField("fullName")]
public bool FullName = false;
[DataField("prefix")]
public string? Prefix;
[DataField("maxValue")]
public int MaxValue = 1000;
[DataField("minValue")]
public int MinValue = 0;
}