Files
crystall-punk-14/Content.Shared/Shuttles/Components/SharedThrusterComponent.cs

12 lines
210 B
C#
Raw Permalink Normal View History

2021-11-21 17:09:49 +11:00
using Robust.Shared.Serialization;
namespace Content.Shared.Shuttles.Components
{
[Serializable, NetSerializable]
public enum ThrusterVisualState : byte
{
State,
Thrusting,
}
}