Files
OldThink/Content.Shared/Lathe/LatheVisualState.cs

18 lines
323 B
C#
Raw Normal View History

2021-06-09 22:19:39 +02:00
using System;
using Robust.Shared.Serialization;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.Lathe
{
[Serializable, NetSerializable]
public enum LatheVisualState
{
Idle,
Producing,
InsertingMetal,
2020-05-24 16:56:19 +00:00
InsertingGlass,
InsertingGold,
2021-02-23 07:53:14 +00:00
InsertingPlasma,
InsertingPlastic
}
}