Files
crystall-punk-14/Content.Shared/Atmos/Consoles/Components/AtmosAlertsDeviceComponent.cs

15 lines
357 B
C#
Raw Permalink Normal View History

using Robust.Shared.GameStates;
namespace Content.Shared.Atmos.Components;
[RegisterComponent, NetworkedComponent]
[Access([])]
public sealed partial class AtmosAlertsDeviceComponent : Component
{
/// <summary>
/// The group that the entity belongs to
/// </summary>
[DataField, ViewVariables]
public AtmosAlertsComputerGroup Group;
}