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 SiphonVisuals
|
|
|
|
|
|
{
|
|
|
|
|
|
VisualState
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
|
public class SiphonVisualState
|
|
|
|
|
|
{
|
|
|
|
|
|
public readonly bool SiphonEnabled;
|
|
|
|
|
|
|
|
|
|
|
|
public SiphonVisualState(bool siphonEnabled)
|
|
|
|
|
|
{
|
|
|
|
|
|
SiphonEnabled = siphonEnabled;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|