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

@@ -13,8 +13,6 @@ namespace Content.Server.Body.Components
[RegisterComponent, Friend(typeof(BloodstreamSystem))]
public class BloodstreamComponent : Component, IGasMixtureHolder
{
public override string Name => "Bloodstream";
/// <summary>
/// Max volume of internal solution storage
/// </summary>

View File

@@ -7,6 +7,5 @@ namespace Content.Server.Body.Components
[RegisterComponent, Friend(typeof(BrainSystem))]
public class BrainComponent : Component
{
public override string Name => "Brain";
}
}

View File

@@ -10,7 +10,6 @@ namespace Content.Server.Body.Components
{
[Dependency] private readonly IEntityManager _entMan = default!;
public override string Name => "Internals";
[ViewVariables] public EntityUid? GasTankEntity { get; set; }
[ViewVariables] public EntityUid? BreathToolEntity { get; set; }

View File

@@ -12,8 +12,6 @@ namespace Content.Server.Body.Components;
[RegisterComponent, Friend(typeof(LungSystem))]
public class LungComponent : Component
{
public override string Name => "Lung";
public float AccumulatedFrametime;
[ViewVariables]

View File

@@ -17,8 +17,6 @@ namespace Content.Server.Body.Components
[RegisterComponent, Friend(typeof(MetabolizerSystem))]
public class MetabolizerComponent : Component
{
public override string Name => "Metabolizer";
public float AccumulatedFrametime = 0.0f;
/// <summary>

View File

@@ -12,8 +12,6 @@ namespace Content.Server.Body.Components
[RegisterComponent, Friend(typeof(RespiratorSystem))]
public class RespiratorComponent : Component
{
public override string Name => "Respirator";
[ViewVariables]
[DataField("needsGases")]
public Dictionary<Gas, float> NeedsGases { get; set; } = new();

View File

@@ -12,8 +12,6 @@ namespace Content.Server.Body.Components
[RegisterComponent, Friend(typeof(StomachSystem))]
public class StomachComponent : Component
{
public override string Name => "Stomach";
public float AccumulatedFrameTime;
/// <summary>

View File

@@ -10,8 +10,6 @@ namespace Content.Server.Body.Components;
[Friend(typeof(ThermalRegulatorSystem))]
public class ThermalRegulatorComponent : Component
{
public override string Name => "ThermalRegulator";
/// <summary>
/// Heat generated due to metabolism. It's generated via metabolism
/// </summary>