13 lines
277 B
C#
13 lines
277 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Shuttles.Components
|
|
{
|
|
/// <summary>
|
|
/// Interact with to start piloting a shuttle.
|
|
/// </summary>
|
|
[NetworkedComponent()]
|
|
public abstract class SharedShuttleConsoleComponent : Component
|
|
{
|
|
}
|
|
}
|