Auto comp (#6416)
This commit is contained in:
@@ -16,7 +16,6 @@ namespace Content.Shared.Shuttles.Components
|
||||
[NetworkedComponent]
|
||||
public sealed class PilotComponent : Component
|
||||
{
|
||||
public override string Name => "Pilot";
|
||||
[ViewVariables] public SharedShuttleConsoleComponent? Console { get; set; }
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -7,7 +7,6 @@ namespace Content.Shared.Shuttles.Components
|
||||
{
|
||||
// Yes I left this in for now because there's no overhead and we'll need a client one later anyway
|
||||
// and I was too lazy to delete it.
|
||||
public override string Name => "Docking";
|
||||
|
||||
[ViewVariables]
|
||||
public bool Enabled = false;
|
||||
|
||||
@@ -5,8 +5,6 @@ namespace Content.Shared.Shuttles.Components
|
||||
{
|
||||
public abstract class SharedShuttleComponent : Component
|
||||
{
|
||||
public override string Name => "Shuttle";
|
||||
|
||||
[ViewVariables]
|
||||
public virtual bool Enabled { get; set; } = true;
|
||||
|
||||
|
||||
@@ -9,6 +9,5 @@ namespace Content.Shared.Shuttles.Components
|
||||
[NetworkedComponent()]
|
||||
public abstract class SharedShuttleConsoleComponent : Component
|
||||
{
|
||||
public override string Name => "ShuttleConsole";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user