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