Files
tbd-station-14/Content.Server/Atmos/IGasReactionEffect.cs
Vera Aguilera Puerto 93acc565f0 Makes Airtight ECS. (#4351)
* Makes Airtight ECS.

* Remove atmos holdovers while at it!
2021-07-25 17:04:58 +10:00

11 lines
280 B
C#

using Content.Server.Atmos.EntitySystems;
using Content.Server.Atmos.Reactions;
namespace Content.Server.Atmos
{
public interface IGasReactionEffect
{
ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, AtmosphereSystem atmosphereSystem);
}
}