using Robust.Shared.GameObjects;
namespace Content.Shared.Botany
{
public interface IPlantMetabolizable
{
///
/// Metabolize unit(s) of a reagent.
///
/// Entity holding the plant
/// Units to metabolize
void Metabolize(IEntity plantHolder, float customPlantMetabolism = 1f);
}
}