Files
tbd-station-14/Content.Server/Kitchen/Components/ExtractableComponent.cs

28 lines
788 B
C#

using Content.Server.Kitchen.EntitySystems;
using Content.Shared.Chemistry.Components;
using Robust.Shared.Analyzers;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
using Robust.Shared.ViewVariables;
namespace Content.Server.Kitchen.Components
{
/// <summary>
/// Tag component that denotes an entity as Extractable
/// </summary>
[RegisterComponent]
[Friend(typeof(ReagentGrinderSystem))]
public class ExtractableComponent : Component
{
public override string Name => "Extractable";
[ViewVariables]
[DataField("juiceSolution")]
public Solution? JuiceSolution;
[ViewVariables]
[DataField("grindableSolutionName")]
public string? GrindableSolution;
}
}