Predict Labels (#36406)

* Predict Labels

* nitpicks
This commit is contained in:
Nemanja
2025-04-11 01:19:48 -04:00
committed by GitHub
parent b812045d64
commit 1540880eb2
20 changed files with 185 additions and 209 deletions

View File

@@ -0,0 +1,19 @@
using Content.Shared.Containers.ItemSlots;
using Content.Shared.Labels.EntitySystems;
using Robust.Shared.GameStates;
namespace Content.Shared.Labels.Components;
/// <summary>
/// This component allows you to attach and remove a piece of paper to an entity.
/// </summary>
[RegisterComponent, NetworkedComponent]
[Access(typeof(LabelSystem))]
public sealed partial class PaperLabelComponent : Component
{
/// <summary>
/// The slot where the label is stored.
/// </summary>
[DataField]
public ItemSlot LabelSlot = new();
}