Gas analyzers now analyze gases in pipes (#7112)

This commit is contained in:
Kevin Zheng
2022-03-19 22:10:48 -07:00
committed by GitHub
parent f4faabe37d
commit 9df4f599f4
5 changed files with 115 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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
}
}