17 lines
385 B
C#
17 lines
385 B
C#
using Content.Shared.Body.Part;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared._Shitmed.Medical.Surgery.Conditions;
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class SurgeryPartConditionComponent : Component
|
|
{
|
|
[DataField]
|
|
public BodyPartType Part;
|
|
|
|
[DataField]
|
|
public BodyPartSymmetry? Symmetry;
|
|
|
|
[DataField]
|
|
public bool Inverse;
|
|
} |