SurgeryOrganConditionComponent.cs 670 B

1234567891011121314151617181920212223
  1. // SPDX-FileCopyrightText: 2024 Piras314 <p1r4s@proton.me>
  2. // SPDX-FileCopyrightText: 2024 gluesniffler <159397573+gluesniffler@users.noreply.github.com>
  3. // SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com>
  4. //
  5. // SPDX-License-Identifier: AGPL-3.0-or-later
  6. using Robust.Shared.GameStates;
  7. using Robust.Shared.Prototypes;
  8. namespace Content.Shared._Shitmed.Medical.Surgery.Conditions;
  9. [RegisterComponent, NetworkedComponent]
  10. public sealed partial class SurgeryOrganConditionComponent : Component
  11. {
  12. [DataField]
  13. public ComponentRegistry? Organ;
  14. [DataField]
  15. public bool Inverse;
  16. [DataField]
  17. public bool Reattaching;
  18. }