Auto comp (#6416)
This commit is contained in:
@@ -8,8 +8,6 @@ namespace Content.Server.Atmos.Piping.Unary.Components
|
||||
[RegisterComponent]
|
||||
public class GasCanisterComponent : Component
|
||||
{
|
||||
public override string Name => "GasCanister";
|
||||
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
[DataField("port")]
|
||||
public string PortName { get; set; } = "port";
|
||||
|
||||
@@ -7,7 +7,6 @@ namespace Content.Server.Atmos.Piping.Unary.Components
|
||||
[RegisterComponent]
|
||||
public class GasOutletInjectorComponent : Component
|
||||
{
|
||||
public override string Name => "GasOutletInjector";
|
||||
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
public bool Enabled { get; set; } = true;
|
||||
|
||||
@@ -6,8 +6,6 @@ namespace Content.Server.Atmos.Piping.Unary.Components
|
||||
[RegisterComponent]
|
||||
public class GasPassiveVentComponent : Component
|
||||
{
|
||||
public override string Name => "GasPassiveVent";
|
||||
|
||||
[DataField("inlet")]
|
||||
public string InletName = "pipe";
|
||||
}
|
||||
|
||||
@@ -7,8 +7,6 @@ namespace Content.Server.Atmos.Piping.Unary.Components
|
||||
[RegisterComponent]
|
||||
public class GasPortableComponent : Component
|
||||
{
|
||||
public override string Name => "GasPortable";
|
||||
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
[DataField("port")]
|
||||
public string PortName { get; set; } = "port";
|
||||
|
||||
@@ -13,8 +13,6 @@ namespace Content.Server.Atmos.Piping.Unary.Components
|
||||
[RegisterComponent]
|
||||
public class GasThermoMachineComponent : Component, IRefreshParts, ISerializationHooks
|
||||
{
|
||||
public override string Name => "GasThermoMachine";
|
||||
|
||||
[DataField("inlet")]
|
||||
public string InletName { get; set; } = "pipe";
|
||||
|
||||
|
||||
@@ -10,8 +10,6 @@ namespace Content.Server.Atmos.Piping.Unary.Components
|
||||
[RegisterComponent]
|
||||
public class GasVentPumpComponent : Component
|
||||
{
|
||||
public override string Name => "GasVentPump";
|
||||
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
public bool Enabled { get; set; } = true;
|
||||
|
||||
|
||||
@@ -11,8 +11,6 @@ namespace Content.Server.Atmos.Piping.Unary.Components
|
||||
[RegisterComponent]
|
||||
public class GasVentScrubberComponent : Component
|
||||
{
|
||||
public override string Name => "GasVentScrubber";
|
||||
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
public bool Enabled { get; set; } = true;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user