This commit is contained in:
wrexbe
2022-02-01 19:35:40 -08:00
committed by GitHub
parent fa8a7e609a
commit 17db0775c8
436 changed files with 20 additions and 828 deletions

View File

@@ -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";

View File

@@ -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;

View File

@@ -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";
}

View File

@@ -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";

View File

@@ -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";

View File

@@ -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;

View File

@@ -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;