10 lines
167 B
C#
10 lines
167 B
C#
using Content.Server.Atmos;
|
|
|
|
namespace Content.Server.Interfaces
|
|
{
|
|
public interface IGasMixtureHolder
|
|
{
|
|
public GasMixture Air { get; set; }
|
|
}
|
|
}
|