This commit is contained in:
pathetic meowmeow
2025-03-15 12:24:23 -04:00
committed by GitHub
parent c7022ae7c5
commit 4576555e5b
20 changed files with 937 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
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;
}