2024-03-28 01:48:37 +01:00
|
|
|
using Content.Shared.Body.Systems;
|
2023-09-21 00:23:02 -07:00
|
|
|
using Robust.Shared.Containers;
|
2022-10-23 00:46:28 +02:00
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Body.Organ;
|
|
|
|
|
|
2023-09-21 00:23:02 -07:00
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
2022-10-23 00:46:28 +02:00
|
|
|
[Access(typeof(SharedBodySystem))]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class OrganComponent : Component
|
2022-10-23 00:46:28 +02:00
|
|
|
{
|
2023-09-21 00:23:02 -07:00
|
|
|
/// <summary>
|
|
|
|
|
/// Relevant body this organ is attached to.
|
|
|
|
|
/// </summary>
|
2024-03-28 01:48:37 +01:00
|
|
|
[DataField, AutoNetworkedField]
|
2022-10-23 00:46:28 +02:00
|
|
|
public EntityUid? Body;
|
|
|
|
|
}
|