#nullable enable using Robust.Shared.GameObjects; namespace Content.Shared.Interfaces.Chemistry { /// /// Chemical reaction effect on the world such as an explosion, EMP, or fire. /// public interface IReactionEffect { void React(IEntity solutionEntity, double intensity); } }