13 lines
313 B
C#
13 lines
313 B
C#
using Content.Shared.Body.Part;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Client.Body.Components
|
|
{
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(SharedBodyPartComponent))]
|
|
[ComponentReference(typeof(IBodyPart))]
|
|
public class BodyPartComponent : SharedBodyPartComponent
|
|
{
|
|
}
|
|
}
|