10 lines
287 B
C#
10 lines
287 B
C#
|
|
using Robust.Shared.GameStates;
|
||
|
|
|
||
|
|
namespace Content.Shared.Shuttles.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Add to grids that you do not want to FTL, but still might want to pilot.
|
||
|
|
/// </summary>
|
||
|
|
[RegisterComponent, NetworkedComponent]
|
||
|
|
public sealed partial class PreventFTLComponent : Component;
|