Files
tbd-station-14/Content.Server/Body/Components/LungComponent.cs
2022-05-13 17:59:03 +10:00

21 lines
506 B
C#

using Content.Server.Atmos;
using Content.Server.Body.Systems;
using Content.Shared.Atmos;
using Content.Shared.Chemistry.Components;
namespace Content.Server.Body.Components;
[RegisterComponent, Friend(typeof(LungSystem))]
public sealed class LungComponent : Component
{
[DataField("air")]
public GasMixture Air { get; set; } = new()
{
Volume = 6,
Temperature = Atmospherics.NormalBodyTemperature
};
[ViewVariables]
public Solution LungSolution = default!;
}