Files
tbd-station-14/Content.Shared/Chemistry/Reaction/IReactionEffect.cs
2021-11-09 11:51:24 +01:00

14 lines
406 B
C#

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