mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-30 20:17:32 +03:00
12 lines
330 B
C#
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);
|
|
}
|
|
}
|