Files
OldThink/Content.Server/Kitchen/Components/ExtractableComponent.cs

20 lines
537 B
C#
Raw Normal View History

using Content.Server.Kitchen.EntitySystems;
using Content.Shared.Chemistry.Components;
namespace Content.Server.Kitchen.Components
{
/// <summary>
/// Tag component that denotes an entity as Extractable
/// </summary>
[RegisterComponent]
[Access(typeof(ReagentGrinderSystem))]
public sealed class ExtractableComponent : Component
{
2022-02-01 19:35:40 -08:00
[DataField("juiceSolution")]
public Solution? JuiceSolution;
[DataField("grindableSolutionName")]
public string? GrindableSolution;
}
}