NanoTaskPrintedComponent.cs 470 B

12345678910111213141516
  1. using Content.Shared.CartridgeLoader.Cartridges;
  2. namespace Content.Shared.CartridgeLoader.Cartridges;
  3. /// <summary>
  4. /// Component attached to a piece of paper to indicate that it was printed from NanoTask and can be inserted back into it
  5. /// </summary>
  6. [RegisterComponent]
  7. public sealed partial class NanoTaskPrintedComponent : Component
  8. {
  9. /// <summary>
  10. /// The task that this item holds
  11. /// </summary>
  12. [DataField]
  13. public NanoTaskItem? Task;
  14. }