Delta-v/Content.Shared/Lathe/LatheVisualState.cs

18 lines
323 B
C#

using System;
using Robust.Shared.Serialization;
namespace Content.Shared.Lathe
{
[Serializable, NetSerializable]
public enum LatheVisualState
{
Idle,
Producing,
InsertingMetal,
InsertingGlass,
InsertingGold,
InsertingPlasma,
InsertingPlastic
}
}