Merge branch 'master' into 2020-08-19-firelocks
This commit is contained in:
22
Content.Shared/GameObjects/Atmos/SharedSiphonComponent.cs
Normal file
22
Content.Shared/GameObjects/Atmos/SharedSiphonComponent.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using Robust.Shared.Serialization;
|
||||
using System;
|
||||
|
||||
namespace Content.Shared.GameObjects.Atmos
|
||||
{
|
||||
[Serializable, NetSerializable]
|
||||
public enum SiphonVisuals
|
||||
{
|
||||
VisualState
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public class SiphonVisualState
|
||||
{
|
||||
public readonly bool SiphonEnabled;
|
||||
|
||||
public SiphonVisualState(bool siphonEnabled)
|
||||
{
|
||||
SiphonEnabled = siphonEnabled;
|
||||
}
|
||||
}
|
||||
}
|
||||
22
Content.Shared/GameObjects/Atmos/SharedVentComponent.cs
Normal file
22
Content.Shared/GameObjects/Atmos/SharedVentComponent.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user