14 lines
335 B
C#
14 lines
335 B
C#
using Content.Server.Shuttles.Systems;
|
|
|
|
namespace Content.Server.Shuttles.Components;
|
|
|
|
/// <summary>
|
|
/// Added to station emergency shuttles by <see cref="EmergencyShuttleSystem.AddEmergencyShuttle"/>,
|
|
/// for FTL event handlers
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class EmergencyShuttleComponent : Component
|
|
{
|
|
|
|
}
|