IGasMixtureHolder.cs 162 B

123456789
  1. using Content.Shared.Atmos;
  2. namespace Content.Server.Atmos
  3. {
  4. public interface IGasMixtureHolder
  5. {
  6. public GasMixture Air { get; set; }
  7. }
  8. }