mirror of
https://github.com/wega-team/ss14-wega.git
synced 2026-02-15 03:31:44 +01:00
19 lines
433 B
C#
19 lines
433 B
C#
using System;
|
|
using Content.Shared.Atmos.Piping;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace Content.Client.Atmos.Visualizers
|
|
{
|
|
[UsedImplicitly]
|
|
public sealed class GasValveVisualizer : EnabledAtmosDeviceVisualizer
|
|
{
|
|
protected override object LayerMap => Layers.Enabled;
|
|
protected override Enum DataKey => FilterVisuals.Enabled;
|
|
|
|
enum Layers : byte
|
|
{
|
|
Enabled,
|
|
}
|
|
}
|
|
}
|