Files
tbd-station-14/Content.Shared/Shuttles/Components/SharedThrusterComponent.cs
2022-05-13 17:59:03 +10:00

12 lines
210 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Shuttles.Components
{
[Serializable, NetSerializable]
public enum ThrusterVisualState : byte
{
State,
Thrusting,
}
}