17 lines
470 B
C#
17 lines
470 B
C#
|
|
using Content.Shared.CartridgeLoader.Cartridges;
|
||
|
|
|
||
|
|
namespace Content.Shared.CartridgeLoader.Cartridges;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Component attached to a piece of paper to indicate that it was printed from NanoTask and can be inserted back into it
|
||
|
|
/// </summary>
|
||
|
|
[RegisterComponent]
|
||
|
|
public sealed partial class NanoTaskPrintedComponent : Component
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// The task that this item holds
|
||
|
|
/// </summary>
|
||
|
|
[DataField]
|
||
|
|
public NanoTaskItem? Task;
|
||
|
|
}
|