Files
tbd-station-14/Content.Shared/Shuttles/Components/SharedThrusterComponent.cs
2021-11-21 17:09:49 +11:00

13 lines
224 B
C#

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