mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
19 lines
456 B
C#
19 lines
456 B
C#
using Content.Shared.Body.Part;
|
|
using Robust.Shared.Audio;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Body.Components;
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class BodyComponentState : ComponentState
|
|
{
|
|
public readonly BodyPartSlot? Root;
|
|
public readonly SoundSpecifier GibSound;
|
|
|
|
public BodyComponentState(BodyPartSlot? root, SoundSpecifier gibSound)
|
|
{
|
|
Root = root;
|
|
GibSound = gibSound;
|
|
}
|
|
}
|