PreventPilotComponent.cs 296 B

123456789101112
  1. using Robust.Shared.GameStates;
  2. namespace Content.Shared.Shuttles.Components;
  3. /// <summary>
  4. /// Add to grids that you do not want manually piloted under any circumstances.
  5. /// </summary>
  6. [RegisterComponent, NetworkedComponent]
  7. public sealed partial class PreventPilotComponent : Component
  8. {
  9. }