1
0

NukeLabelComponent.cs 411 B

1234567891011121314
  1. namespace Content.Server.Nuke;
  2. /// <summary>
  3. /// This generates a label for a nuclear bomb.
  4. /// </summary>
  5. /// <remarks>
  6. /// This is a separate component because the fake nuclear bomb keg exists.
  7. /// </remarks>
  8. [RegisterComponent]
  9. public sealed partial class NukeLabelComponent : Component
  10. {
  11. [DataField] public LocId Prefix = "nuke-label-nanotrasen";
  12. [DataField] public int SerialLength = 6;
  13. }