using Content.Shared.Chemistry.Components;
using Robust.Shared.GameObjects;
namespace Content.Shared.Body.Components
{
public abstract class SharedBloodstreamComponent : Component
{
///
/// Attempts to transfer the provided solution to an internal solution.
/// Only supports complete transfers.
///
/// The solution to be transferred.
/// Whether or not transfer was successful.
public abstract bool TryTransferSolution(Solution solution);
public const string DefaultSolutionName = "bloodstream";
}
}