Files
OldThink/Content.Shared/Chemistry/Reaction/ITileReaction.cs
2021-06-09 22:19:39 +02:00

12 lines
277 B
C#

#nullable enable
using Content.Shared.Chemistry.Reagent;
using Robust.Shared.Map;
namespace Content.Shared.Chemistry.Reaction
{
public interface ITileReaction
{
ReagentUnit TileReact(TileRef tile, ReagentPrototype reagent, ReagentUnit reactVolume);
}
}