SurgeryPartConditionComponent.cs 613 B

12345678910111213141516171819202122
  1. // SPDX-FileCopyrightText: 2024 gluesniffler <159397573+gluesniffler@users.noreply.github.com>
  2. // SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com>
  3. //
  4. // SPDX-License-Identifier: AGPL-3.0-or-later
  5. using Content.Shared.Body.Part;
  6. using Robust.Shared.GameStates;
  7. namespace Content.Shared._Shitmed.Medical.Surgery.Conditions;
  8. [RegisterComponent, NetworkedComponent]
  9. public sealed partial class SurgeryPartConditionComponent : Component
  10. {
  11. [DataField]
  12. public BodyPartType Part;
  13. [DataField]
  14. public BodyPartSymmetry? Symmetry;
  15. [DataField]
  16. public bool Inverse;
  17. }