11 lines
209 B
C#
11 lines
209 B
C#
using Content.Server.Atmos.EntitySystems;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.Atmos
|
|
{
|
|
public interface IGasMixtureHolder
|
|
{
|
|
public GasMixture Air { get; set; }
|
|
}
|
|
}
|