Files
OldThink/Content.Shared/_Amour/Hole/HoleInventoryComponent.cs
2024-02-16 13:44:11 +03:00

18 lines
479 B
C#

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<ItemSizePrototype> Size = "Small";
[DataField] public ProtoId<ItemSizePrototype> MaxSize = "Normal";
[ViewVariables] public ContainerSlot Slot = default!;
}