2020-10-10 15:25:13 +02:00
|
|
|
|
using Content.Shared.Chemistry;
|
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.GameObjects.Components.Body.Networks
|
|
|
|
|
|
{
|
|
|
|
|
|
public abstract class SharedBloodstreamComponent : Component
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2020-11-15 04:22:59 +01:00
|
|
|
|
/// Attempts to transfer the provided solution to an internal solution.
|
|
|
|
|
|
/// Only supports complete transfers.
|
2020-10-10 15:25:13 +02:00
|
|
|
|
/// </summary>
|
2020-11-15 04:22:59 +01:00
|
|
|
|
/// <param name="solution">The solution to be transferred.</param>
|
|
|
|
|
|
/// <returns>Whether or not transfer was successful.</returns>
|
2020-10-10 15:25:13 +02:00
|
|
|
|
public abstract bool TryTransferSolution(Solution solution);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|