2021-09-06 15:49:44 +02:00
|
|
|
|
using Content.Shared.Chemistry.Components;
|
2021-11-08 15:33:45 -07:00
|
|
|
|
using JetBrains.Annotations;
|
2021-07-31 04:50:32 -07:00
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Chemistry.Reagent
|
|
|
|
|
|
{
|
|
|
|
|
|
[ImplicitDataDefinitionForInheritors]
|
2021-11-08 15:33:45 -07:00
|
|
|
|
[MeansImplicitUse]
|
2021-07-31 04:50:32 -07:00
|
|
|
|
public abstract class ReagentEffectCondition
|
|
|
|
|
|
{
|
2021-11-08 15:33:45 -07:00
|
|
|
|
public abstract bool Condition(EntityUid solutionEntity, EntityUid organEntity, Solution.ReagentQuantity reagent, IEntityManager entityManager);
|
2021-07-31 04:50:32 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|