Co-authored-by: Moony <moonheart08@users.noreply.github.com> Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
13 lines
306 B
C#
13 lines
306 B
C#
using Content.Shared.Clothing.Components;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Client.Clothing
|
|
{
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(SharedClothingComponent))]
|
|
public sealed class ClothingComponent : SharedClothingComponent
|
|
{
|
|
public string? InSlot;
|
|
}
|
|
}
|