CyberneticsComponent.cs 711 B

123456789101112131415161718192021
  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 Robust.Shared.GameStates;
  6. namespace Content.Shared._Shitmed.Cybernetics;
  7. /// <summary>
  8. /// Component for cybernetic implants that can be installed in entities
  9. /// </summary>
  10. [RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
  11. public sealed partial class CyberneticsComponent : Component
  12. {
  13. /// <summary>
  14. /// Is the cybernetic implant disabled by EMPs, etc?
  15. /// </summary>
  16. [DataField, AutoNetworkedField]
  17. public bool Disabled = false;
  18. }