Delta-v/Content.Shared/Shuttles/Components/SharedThrusterComponent.cs

13 lines
224 B
C#

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