17 lines
461 B
C#
17 lines
461 B
C#
using Content.Shared.Body.Systems;
|
|
using Robust.Shared.Containers;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Body.Organ;
|
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|
[Access(typeof(SharedBodySystem))]
|
|
public sealed partial class OrganComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Relevant body this organ is attached to.
|
|
/// </summary>
|
|
[DataField("body"), AutoNetworkedField]
|
|
public EntityUid? Body;
|
|
}
|