2023-05-07 06:37:28 -07:00
|
|
|
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))]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class ThrusterComponent : Component
|
2023-05-07 06:37:28 -07:00
|
|
|
{
|
|
|
|
|
}
|