Filter sprites & visualizer (#3008)

Co-authored-by: py01 <pyronetics01@gmail.com>
This commit is contained in:
py01
2021-01-17 09:10:22 -06:00
committed by GitHub
parent 9d5e85ba1e
commit e759a8aec9
17 changed files with 72 additions and 12 deletions

View File

@@ -1,3 +1,4 @@
#nullable enable
using System;
using Robust.Shared.Serialization;
@@ -12,6 +13,11 @@ namespace Content.Shared.GameObjects.Components.Atmos
[Serializable, NetSerializable]
public class FilterVisualState
{
public bool Enabled { get; }
public FilterVisualState(bool enabled)
{
Enabled = enabled;
}
}
}