Files
tbd-station-14/Content.Client/Shuttles/ThrusterComponent.cs
TemporalOroboros 8536756db5 Resolves ThrusterVisualizer is Obsolete (#13904)
Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
2023-05-07 23:37:28 +10:00

13 lines
356 B
C#

using Robust.Shared.GameStates;
namespace Content.Client.Shuttles;
/// <summary>
/// A component that emits a visible exhaust plume if the entity is an active thruster.
/// Managed by <see cref="ThrusterSystem"/>
/// </summary>
[RegisterComponent, NetworkedComponent, Access(typeof(ThrusterSystem))]
public sealed class ThrusterComponent : Component
{
}