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