Files
tbd-station-14/Content.Shared/Lathe/LatheVisualState.cs
2021-06-09 22:19:39 +02:00

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
}
}