17 lines
606 B
C#
17 lines
606 B
C#
using Content.Shared.Chemistry;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Shared.GameObjects.Components.Body.Networks
|
|
{
|
|
public abstract class SharedBloodstreamComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Attempts to transfer the provided solution to an internal solution.
|
|
/// Only supports complete transfers.
|
|
/// </summary>
|
|
/// <param name="solution">The solution to be transferred.</param>
|
|
/// <returns>Whether or not transfer was successful.</returns>
|
|
public abstract bool TryTransferSolution(Solution solution);
|
|
}
|
|
}
|