Auto comp (#6416)
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -7,6 +7,5 @@ namespace Content.Server.Body.Components
|
||||
[RegisterComponent, Friend(typeof(BrainSystem))]
|
||||
public class BrainComponent : Component
|
||||
{
|
||||
public override string Name => "Brain";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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; }
|
||||
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user