Files
tbd-station-14/Content.Server/Atmos/Components/GasAnalyzableComponent.cs
2022-05-13 17:59:03 +10:00

12 lines
262 B
C#

/**
* GasAnalyzableComponent is a component for anything that can be examined with a gas analyzer.
*/
namespace Content.Server.Atmos.Components
{
[RegisterComponent]
public sealed class GasAnalyzableComponent : Component
{
// Empty
}
}