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 { /// /// Tag component that denotes an entity as Extractable /// [RegisterComponent] [Friend(typeof(ReagentGrinderSystem))] public class ExtractableComponent : Component { public override string Name => "Extractable"; [ViewVariables] [DataField("result")] public Solution ResultSolution = new(); [ViewVariables] [DataField("extractableSolution")] public string? GrindableSolution; } }