Files
OldThink/Content.Shared/Shuttles/Components/SharedShuttleConsoleComponent.cs

14 lines
310 B
C#
Raw Normal View History

using Robust.Shared.GameObjects;
using Robust.Shared.GameStates;
2021-11-21 17:09:49 +11:00
namespace Content.Shared.Shuttles.Components
{
/// <summary>
/// Interact with to start piloting a shuttle.
/// </summary>
[NetworkedComponent()]
public abstract class SharedShuttleConsoleComponent : Component
{
}
}