Files
tbd-station-14/Content.Server/Atmos/IGasReactionEffect.cs

12 lines
330 B
C#

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