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

21 lines
343 B
C#
Raw Normal View History

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,
}
}