Delta-v/Content.Shared/Clothing/Components/FoldableClothingComponent.cs

21 lines
507 B
C#

using Content.Shared.Inventory;
using Robust.Shared.GameStates;
namespace Content.Shared.Clothing.Components;
[RegisterComponent, NetworkedComponent]
public sealed partial class FoldableClothingComponent : Component
{
/// <summary>
/// Which slots does this fit into when folded?
/// </summary>
[DataField]
public SlotFlags? FoldedSlots;
/// <summary>
/// Which slots does this fit into when unfolded?
/// </summary>
[DataField]
public SlotFlags? UnfoldedSlots;
}