6
StarHorizon_Public/Content.Server/Nuke/NukeCodePaperComponent.cs
2025-11-03 10:15:18 +03:00

19 lines
583 B
C#

namespace Content.Server.Nuke
{
/// <summary>
/// Paper with a written nuclear code in it.
/// Can be used in mapping or admins spawn.
/// </summary>
[RegisterComponent]
public sealed partial class NukeCodePaperComponent : Component
{
/// <summary>
/// Whether or not paper will contain a code for a nuke on the same
/// station as the paper, or if it will get a random code from all
/// possible nukes.
/// </summary>
[DataField("allNukesAvailable")]
public bool AllNukesAvailable;
}
}