Files
OldThink/Content.Shared/_Amour/Hole/HoleContainerComponent.cs
2024-02-18 13:23:05 +03:00

16 lines
514 B
C#

using Robust.Shared.Containers;
using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
namespace Content.Shared._Amour.Hole;
[RegisterComponent,NetworkedComponent]
public sealed partial class HoleContainerComponent : Component
{
public const string SlotName = "Funny";
[ViewVariables] public Container Slot = default!;
[ViewVariables] public NetEntity? MainHole;
[DataField] public List<EntProtoId> HolePrototypes = new();
[DataField] public bool UseHumanGenitalLayers = false;
}