Files
tbd-station-14/Content.Shared/Clothing/Components/FoldableClothingComponent.cs
themias f7a3ea6dcf Flipped caps real (#24961)
* Flipped caps real

* oops

* whoops

* flip not fold

* fix formatting

* cargosoft formatting
2024-02-10 00:44:19 -08:00

34 lines
822 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;
/// <summary>
/// What equipped prefix does this have while in folded form?
/// </summary>
[DataField]
public string? FoldedEquippedPrefix;
/// <summary>
/// What held prefix does this have while in folded form?
/// </summary>
[DataField]
public string? FoldedHeldPrefix;
}