19 lines
490 B
C#
19 lines
490 B
C#
|
|
using Content.Server.Atmos.Piping.EntitySystems;
|
||
|
|
using JetBrains.Annotations;
|
||
|
|
using Robust.Shared.GameObjects;
|
||
|
|
using Robust.Shared.Maths;
|
||
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
||
|
|
using Robust.Shared.ViewVariables;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 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
|
||
|
|
}
|
||
|
|
}
|