SharedThrusterComponent.cs 210 B

1234567891011
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Shuttles.Components
  3. {
  4. [Serializable, NetSerializable]
  5. public enum ThrusterVisualState : byte
  6. {
  7. State,
  8. Thrusting,
  9. }
  10. }