2022-04-17 03:34:14 -04:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Lathe
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Stores bools for if the machine is on
|
|
|
|
|
/// and if it's currently running and/or inserting.
|
|
|
|
|
/// Used for the visualizer
|
|
|
|
|
/// </summary>
|
2022-09-16 19:49:05 -04:00
|
|
|
[Serializable, NetSerializable]
|
2022-04-17 03:34:14 -04:00
|
|
|
public enum LatheVisuals : byte
|
|
|
|
|
{
|
|
|
|
|
IsRunning,
|
|
|
|
|
IsInserting,
|
|
|
|
|
InsertingColor
|
|
|
|
|
}
|
|
|
|
|
}
|