* Moved GasMixture to shared * Temp Fix for sandbox violation, idk why Array.Resize isn't working properly. It's already sandboxed. * The most powerful webedit in history
11 lines
286 B
C#
11 lines
286 B
C#
using Content.Shared.Atmos;
|
|
|
|
namespace Content.Server.Atmos.Components
|
|
{
|
|
[RegisterComponent]
|
|
public sealed partial class GasMixtureHolderComponent : Component, IGasMixtureHolder
|
|
{
|
|
[DataField("air")] public GasMixture Air { get; set; } = new GasMixture();
|
|
}
|
|
}
|