PaperLabelComponent.cs 394 B

1234567891011121314
  1. using Content.Shared.Containers.ItemSlots;
  2. namespace Content.Server.Labels.Components
  3. {
  4. /// <summary>
  5. /// This component allows you to attach and remove a piece of paper to an entity.
  6. /// </summary>
  7. [RegisterComponent]
  8. public sealed partial class PaperLabelComponent : Component
  9. {
  10. [DataField("labelSlot")]
  11. public ItemSlot LabelSlot = new();
  12. }
  13. }