LatheVisuals.cs 389 B

1234567891011121314151617
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Lathe
  3. {
  4. /// <summary>
  5. /// Stores bools for if the machine is on
  6. /// and if it's currently running and/or inserting.
  7. /// Used for the visualizer
  8. /// </summary>
  9. [Serializable, NetSerializable]
  10. public enum LatheVisuals : byte
  11. {
  12. IsRunning,
  13. IsInserting,
  14. InsertingColor
  15. }
  16. }