13 lines
288 B
C#
13 lines
288 B
C#
|
|
using Robust.Shared.GameStates;
|
||
|
|
|
||
|
|
namespace Content.Shared.Shuttles.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Add to grids that you do not want manually piloted under any circumstances.
|
||
|
|
/// </summary>
|
||
|
|
[RegisterComponent, NetworkedComponent]
|
||
|
|
public sealed class PreventPilotComponent : Component
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|