2021-07-21 21:15:12 +10:00
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
|
|
2021-11-21 17:09:49 +11:00
|
|
|
namespace Content.Shared.Shuttles.Components
|
2021-07-21 21:15:12 +10:00
|
|
|
{
|
|
|
|
|
public abstract class SharedShuttleComponent : Component
|
|
|
|
|
{
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
public virtual bool Enabled { get; set; } = true;
|
|
|
|
|
|
|
|
|
|
[ViewVariables]
|
2021-10-09 10:55:10 +11:00
|
|
|
public ShuttleMode Mode { get; set; } = ShuttleMode.Cruise;
|
2021-07-21 21:15:12 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum ShuttleMode : byte
|
|
|
|
|
{
|
|
|
|
|
Docking,
|
|
|
|
|
Cruise,
|
|
|
|
|
}
|
|
|
|
|
}
|