1
0

NukeCodePaperComponent.cs 583 B

123456789101112131415161718
  1. namespace Content.Server.Nuke
  2. {
  3. /// <summary>
  4. /// Paper with a written nuclear code in it.
  5. /// Can be used in mapping or admins spawn.
  6. /// </summary>
  7. [RegisterComponent]
  8. public sealed partial class NukeCodePaperComponent : Component
  9. {
  10. /// <summary>
  11. /// Whether or not paper will contain a code for a nuke on the same
  12. /// station as the paper, or if it will get a random code from all
  13. /// possible nukes.
  14. /// </summary>
  15. [DataField("allNukesAvailable")]
  16. public bool AllNukesAvailable;
  17. }
  18. }