Files
crystall-punk-14/Content.Shared/Shuttles/Components/SharedShuttleComponent.cs

18 lines
378 B
C#
Raw Normal View History

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