Files
tbd-station-14/Content.Shared/Shuttles/Components/SharedShuttleConsoleComponent.cs
2021-11-21 17:09:49 +11:00

15 lines
367 B
C#

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