Files
tbd-station-14/Content.Server/Interfaces/IGasReactionEffect.cs
Víctor Aguilera Puerto fb0ac3d70e Atmos optimizations (#1944)
* Adds IFireAct, ITemperatureExpose

* Use AtmosDirection instead of Direction for Atmos

* Refactor atmos to heavily rely on arrays and bitflags.
Adds F A S T M O S and reduces atmos tech debt heavily.

* Optimize and fix more stuff

* Kinda improve superconduction

* Pipenet is a word

* T U R B O M O S

* Address reviews

* Small optimization

* Superconduct is also a word

* Remove check

* Cleanup tile atmosphere

* Correct a comment
2020-08-28 14:32:56 +02:00

14 lines
369 B
C#

#nullable enable
using Content.Server.Atmos;
using Content.Server.Atmos.Reactions;
using Robust.Shared.GameObjects;
using Robust.Shared.Interfaces.Serialization;
namespace Content.Server.Interfaces
{
public interface IGasReactionEffect : IExposeData
{
ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, IEventBus eventBus);
}
}