Files
tbd-station-14/Content.Shared/Disease/DiseaseMachineVisuals.cs
2023-01-19 13:56:45 +11:00

17 lines
352 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Disease
{
/// <summary>
/// Stores bools for if the machine is on
/// and if it's currently running.
/// Used for the visualizer
/// </summary>
[Serializable, NetSerializable]
public enum DiseaseMachineVisuals : byte
{
IsOn,
IsRunning
}
}