Files
tbd-station-14/Content.Server/Atmos/IGasMixtureHolder.cs
2021-08-02 17:03:13 +02:00

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; }
}
}