12 lines
262 B
C#
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
|
|
}
|
|
}
|