* 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
10 lines
162 B
C#
10 lines
162 B
C#
using Content.Shared.Atmos;
|
|
|
|
namespace Content.Server.Atmos
|
|
{
|
|
public interface IGasMixtureHolder
|
|
{
|
|
public GasMixture Air { get; set; }
|
|
}
|
|
}
|