using Robust.Shared.Prototypes;
namespace Content.Shared.Kitchen.Components;
[RegisterComponent]
public sealed partial class FoodRecipeProviderComponent : Component
{
///
/// These are additional recipes that the entity is capable of cooking.
///
[DataField, ViewVariables]
public List> ProvidedRecipes = new();
}