using Content.Shared.Chemistry.Components; using Robust.Shared.GameObjects; namespace Content.Shared.Chemistry.Reaction { /// /// Chemical reaction effect on the world such as an explosion, EMP, or fire. /// public interface IReactionEffect { void React(Solution solution, EntityUid solutionEntity, double intensity, IEntityManager entityManager); } }