Files
tbd-station-14/Content.Server/Interfaces/Chemistry/IReactionEffect.cs
Tyler Young de274de9e3 use CannyFastMath in various places even where it might not be any different
also update a bunch of packages

clean up redundant YamlDotNet references
2020-06-14 09:36:53 -04:00

14 lines
378 B
C#

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