2021-11-20 18:26:01 +13:00
|
|
|
using Content.Shared.Containers.ItemSlots;
|
2021-11-11 02:15:23 +13:00
|
|
|
|
|
|
|
|
namespace Content.Server.Labels.Components
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This component allows you to attach and remove a piece of paper to an entity.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class PaperLabelComponent : Component
|
2021-11-11 02:15:23 +13:00
|
|
|
{
|
|
|
|
|
[DataField("labelSlot")]
|
2021-11-20 18:26:01 +13:00
|
|
|
public ItemSlot LabelSlot = new();
|
2021-11-11 02:15:23 +13:00
|
|
|
}
|
|
|
|
|
}
|