20 lines
311 B
C#
20 lines
311 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Conveyor
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum ConveyorVisuals
|
|
{
|
|
State
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum ConveyorState
|
|
{
|
|
Off,
|
|
Forward,
|
|
Reversed
|
|
}
|
|
}
|