Files
OldThink/Content.Shared/_Amour/Hole/HoleContainerComponent.cs

16 lines
514 B
C#
Raw Permalink Normal View History

2024-02-14 12:49:00 +03:00
using Robust.Shared.Containers;
2024-02-14 23:27:46 +03:00
using Robust.Shared.GameStates;
2024-02-14 12:49:00 +03:00
using Robust.Shared.Prototypes;
namespace Content.Shared._Amour.Hole;
2024-02-16 21:21:19 +03:00
[RegisterComponent,NetworkedComponent]
2024-02-14 12:49:00 +03:00
public sealed partial class HoleContainerComponent : Component
{
public const string SlotName = "Funny";
[ViewVariables] public Container Slot = default!;
2024-02-18 13:23:05 +03:00
[ViewVariables] public NetEntity? MainHole;
2024-02-14 12:49:00 +03:00
[DataField] public List<EntProtoId> HolePrototypes = new();
2024-02-17 19:03:07 +03:00
[DataField] public bool UseHumanGenitalLayers = false;
2024-02-14 12:49:00 +03:00
}