Files
crystall-punk-14/Content.Shared/Body/Networks/SharedBloodstreamComponent.cs

17 lines
592 B
C#
Raw Normal View History

using Content.Shared.Chemistry.Solution;
using Robust.Shared.GameObjects;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.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);
}
}