2021-07-21 21:15:12 +10:00
|
|
|
using Robust.Shared.GameStates;
|
2022-06-16 15:28:16 +10:00
|
|
|
using Robust.Shared.Serialization;
|
2021-07-21 21:15:12 +10:00
|
|
|
|
2021-11-21 17:09:49 +11:00
|
|
|
namespace Content.Shared.Shuttles.Components
|
2021-07-21 21:15:12 +10:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interact with to start piloting a shuttle.
|
|
|
|
|
/// </summary>
|
2022-06-16 15:28:16 +10:00
|
|
|
[NetworkedComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public abstract partial class SharedShuttleConsoleComponent : Component
|
2021-07-21 21:15:12 +10:00
|
|
|
{
|
2024-04-01 06:50:00 +02:00
|
|
|
public static string DiskSlotName = "disk_slot";
|
2022-06-16 15:28:16 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public enum ShuttleConsoleUiKey : byte
|
|
|
|
|
{
|
|
|
|
|
Key,
|
2021-07-21 21:15:12 +10:00
|
|
|
}
|
|
|
|
|
}
|