mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
19 lines
437 B
C#
19 lines
437 B
C#
using System;
|
|
using Content.Shared.Atmos.Piping;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace Content.Client.Atmos.Visualizers
|
|
{
|
|
[UsedImplicitly]
|
|
public class OutletInjectorVisualizer : EnabledAtmosDeviceVisualizer
|
|
{
|
|
protected override object LayerMap => Layers.Enabled;
|
|
protected override Enum DataKey => OutletInjectorVisuals.Enabled;
|
|
|
|
enum Layers : byte
|
|
{
|
|
Enabled,
|
|
}
|
|
}
|
|
}
|