Files
tbd-station-14/Content.Server/Clothing/Components/ClothingComponent.cs
2022-07-27 03:53:47 -07:00

14 lines
363 B
C#

using Content.Shared.Clothing.Components;
using Content.Shared.Item;
using Robust.Shared.GameStates;
namespace Content.Server.Clothing.Components
{
// Needed for client-side clothing component.
[RegisterComponent]
[ComponentReference(typeof(SharedClothingComponent))]
public sealed class ClothingComponent : SharedClothingComponent
{
}
}