18 lines
389 B
C#
18 lines
389 B
C#
|
|
using Robust.Shared.Serialization;
|
||
|
|
|
||
|
|
namespace Content.Shared.Lathe
|
||
|
|
{
|
||
|
|
[Serializable, NetSerializable]
|
||
|
|
/// <summary>
|
||
|
|
/// Stores bools for if the machine is on
|
||
|
|
/// and if it's currently running and/or inserting.
|
||
|
|
/// Used for the visualizer
|
||
|
|
/// </summary>
|
||
|
|
public enum LatheVisuals : byte
|
||
|
|
{
|
||
|
|
IsRunning,
|
||
|
|
IsInserting,
|
||
|
|
InsertingColor
|
||
|
|
}
|
||
|
|
}
|