Resolves ThrusterVisualizer is Obsolete (#13904)

Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
This commit is contained in:
TemporalOroboros
2023-05-07 06:37:28 -07:00
committed by GitHub
parent 667863867b
commit 8536756db5
5 changed files with 75 additions and 74 deletions

View File

@@ -0,0 +1,12 @@
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
{
}