using Content.Shared.Item; using Robust.Shared.Containers; using Robust.Shared.Prototypes; namespace Content.Shared._Amour.Hole; [RegisterComponent] public sealed partial class HoleInventoryComponent : Component { public const string SlotName = "Funny"; // Funny slot [DataField] public ProtoId Size = "Small"; [DataField] public ProtoId MaxSize = "Normal"; [ViewVariables] public ContainerSlot Slot = default!; }