mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-14 19:29:53 +01:00
* Nubody * fix test fails * gibbing * lung test returns * doc comment * hand organ test * giblet test * yaml formatting * returning * relocate * trimming * re-smite * oops thusd tweak * arachnids have slower metabolism i guess * never mind the old behaviour is bad actually * rider whyyy * style changes and allat * fix collision --------- Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com>
22 lines
559 B
C#
22 lines
559 B
C#
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Body;
|
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|
[Access(typeof(BodySystem))]
|
|
public sealed partial class OrganComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The body entity containing this organ, if any
|
|
/// </summary>
|
|
[DataField, AutoNetworkedField]
|
|
public EntityUid? Body;
|
|
|
|
/// <summary>
|
|
/// What kind of organ is this, if any
|
|
/// </summary>
|
|
[DataField]
|
|
public ProtoId<OrganCategoryPrototype>? Category;
|
|
}
|