11 lines
327 B
C#
11 lines
327 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Atmos.Components;
|
|
|
|
/// <summary>
|
|
/// Entities with component will be queried against for their
|
|
/// atmos monitoring data on atmos monitoring consoles
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class GasPipeSensorComponent : Component;
|