Remove cryo pod component references (#15247)
This commit is contained in:
15
Content.Server/Medical/Components/CryoPodAirComponent.cs
Normal file
15
Content.Server/Medical/Components/CryoPodAirComponent.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using Content.Server.Atmos;
|
||||
using Content.Shared.Atmos;
|
||||
|
||||
namespace Content.Server.Medical.Components;
|
||||
|
||||
[RegisterComponent]
|
||||
public sealed class CryoPodAirComponent : Component
|
||||
{
|
||||
/// <summary>
|
||||
/// Local air buffer that will be mixed with the pipenet, if one exists, per tick.
|
||||
/// </summary>
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
[DataField("gasMixture")]
|
||||
public GasMixture Air { get; set; } = new(Atmospherics.OneAtmosphere);
|
||||
}
|
||||
Reference in New Issue
Block a user