* scrubber sprites * vent sprites * Vent visualstate * scrubber visual state * Vent and siphon respect being disabled * Vent and Siphon Visualizer * Fix typo Co-authored-by: py01 <pyronetics01@gmail.com> Co-authored-by: DrSmugleaf <DrSmugleaf@users.noreply.github.com>
23 lines
429 B
C#
23 lines
429 B
C#
using Robust.Shared.Serialization;
|
|
using System;
|
|
|
|
namespace Content.Shared.GameObjects.Atmos
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum VentVisuals
|
|
{
|
|
VisualState
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public class VentVisualState
|
|
{
|
|
public readonly bool VentEnabled;
|
|
|
|
public VentVisualState(bool ventEnabled)
|
|
{
|
|
VentEnabled = ventEnabled;
|
|
}
|
|
}
|
|
}
|