AtmosAlertsDeviceComponent.cs 357 B

1234567891011121314
  1. using Robust.Shared.GameStates;
  2. namespace Content.Shared.Atmos.Components;
  3. [RegisterComponent, NetworkedComponent]
  4. [Access([])]
  5. public sealed partial class AtmosAlertsDeviceComponent : Component
  6. {
  7. /// <summary>
  8. /// The group that the entity belongs to
  9. /// </summary>
  10. [DataField, ViewVariables]
  11. public AtmosAlertsComputerGroup Group;
  12. }