12 lines
210 B
C#
12 lines
210 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Shuttles.Components
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum ThrusterVisualState : byte
|
|
{
|
|
State,
|
|
Thrusting,
|
|
}
|
|
}
|