EmaggedComponent.cs 492 B

1234567891011121314151617
  1. using Content.Shared.Emag.Systems;
  2. using Robust.Shared.GameStates;
  3. namespace Content.Shared.Emag.Components;
  4. /// <summary>
  5. /// Marker component for emagged entities
  6. /// </summary>
  7. [RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
  8. public sealed partial class EmaggedComponent : Component
  9. {
  10. /// <summary>
  11. /// The EmagType flags that were used to emag this device
  12. /// </summary>
  13. [DataField, AutoNetworkedField]
  14. public EmagType EmagType = EmagType.None;
  15. }