* PROJECT 0 WARNINGS: Resolve `'EntitySystem.Get<T>()' is obsolete` in content * pass entman * dog ass test * webeditor
15 lines
359 B
C#
15 lines
359 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,
|
|
IEntityManager entityManager);
|
|
}
|
|
}
|