| 1234567891011121314151617181920212223 |
- // SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com>
- // SPDX-FileCopyrightText: 2025 Janet Blackquill <uhhadd@gmail.com>
- // SPDX-FileCopyrightText: 2025 deltanedas <39013340+deltanedas@users.noreply.github.com>
- // SPDX-FileCopyrightText: 2025 deltanedas <@deltanedas:kde.org>
- //
- // SPDX-License-Identifier: AGPL-3.0-or-later
- using Robust.Shared.GameStates;
- namespace Content.Shared._Shitmed.Medical.Surgery.Conditions;
- /// <summary>
- /// Requires that an organ slot does (not) exist on the target part for a surgery to be possible.
- /// </summary>
- [RegisterComponent, NetworkedComponent]
- public sealed partial class SurgeryOrganSlotConditionComponent : Component
- {
- [DataField(required: true)]
- public string OrganSlot = default!;
- [DataField]
- public bool Inverse;
- }
|