21 lines
506 B
C#
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!;
|
|
}
|