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