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