2022-10-25 11:08:41 +11:00
|
|
|
|
using Content.Shared.Body.Components;
|
|
|
|
|
|
using Content.Shared.Body.Prototypes;
|
|
|
|
|
|
using Content.Shared.Body.Systems;
|
2022-10-23 00:46:28 +02:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.Body.Systems;
|
|
|
|
|
|
|
|
|
|
|
|
public sealed class BodySystem : SharedBodySystem
|
|
|
|
|
|
{
|
2022-10-25 11:08:41 +11:00
|
|
|
|
protected override void InitBody(BodyComponent body, BodyPrototype prototype)
|
|
|
|
|
|
{
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2022-10-23 00:46:28 +02:00
|
|
|
|
}
|