using Robust.Shared.GameObjects; using Robust.Shared.GameStates; namespace Content.Shared.Shuttles { /// /// Interact with to start piloting a shuttle. /// [NetworkedComponent()] public abstract class SharedShuttleConsoleComponent : Component { public override string Name => "ShuttleConsole"; } }