SurgeryHasBodyConditionComponent.cs 604 B

123456789101112131415
  1. // SPDX-FileCopyrightText: 2024 deltanedas <39013340+deltanedas@users.noreply.github.com>
  2. // SPDX-FileCopyrightText: 2024 deltanedas <@deltanedas:kde.org>
  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. namespace Content.Shared._Shitmed.Medical.Surgery.Conditions;
  8. /// <summary>
  9. /// Requires that this part is attached to a body for the surgery to be done.
  10. /// </summary>
  11. [RegisterComponent, NetworkedComponent]
  12. public sealed partial class SurgeryHasBodyConditionComponent : Component;