14 lines
319 B
C#
14 lines
319 B
C#
using Content.Shared.Body.Components;
|
|
using Content.Shared.Body.Prototypes;
|
|
using Content.Shared.Body.Systems;
|
|
|
|
namespace Content.Client.Body.Systems;
|
|
|
|
public sealed class BodySystem : SharedBodySystem
|
|
{
|
|
protected override void InitBody(BodyComponent body, BodyPrototype prototype)
|
|
{
|
|
return;
|
|
}
|
|
}
|