12 lines
293 B
C#
12 lines
293 B
C#
using Content.Shared.Chemistry.Reagent;
|
|
using Content.Shared.FixedPoint;
|
|
using Robust.Shared.Map;
|
|
|
|
namespace Content.Shared.Chemistry.Reaction
|
|
{
|
|
public interface ITileReaction
|
|
{
|
|
FixedPoint2 TileReact(TileRef tile, ReagentPrototype reagent, FixedPoint2 reactVolume);
|
|
}
|
|
}
|