Files
tbd-station-14/Content.Shared/GameObjects/Components/Power/SharedLatheComponent.cs
2021-02-23 18:53:14 +11:00

18 lines
343 B
C#

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