Files
crystall-punk-14/Content.Shared/GameObjects/Components/Atmos/SharedGasAnalyzerComponent.cs

22 lines
360 B
C#
Raw Normal View History

#nullable enable
using Robust.Shared.Serialization;
using System;
namespace Content.Shared.GameObjects.Components.Atmos
{
[NetSerializable]
[Serializable]
public enum GasAnalyzerVisuals
{
VisualState,
}
[NetSerializable]
[Serializable]
public enum GasAnalyzerVisualState
{
Off,
Working,
}
}