2020-09-21 17:51:07 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using Robust.Shared.Serialization;
|
2020-09-12 06:26:50 -06:00
|
|
|
|
|
2020-09-21 17:51:07 +02:00
|
|
|
|
namespace Content.Shared.GameObjects.Components.Atmos
|
2020-09-12 06:26:50 -06:00
|
|
|
|
{
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
|
public enum VentVisuals
|
|
|
|
|
|
{
|
|
|
|
|
|
VisualState
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
|
public class VentVisualState
|
|
|
|
|
|
{
|
|
|
|
|
|
public readonly bool VentEnabled;
|
|
|
|
|
|
|
|
|
|
|
|
public VentVisualState(bool ventEnabled)
|
|
|
|
|
|
{
|
|
|
|
|
|
VentEnabled = ventEnabled;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|