1
0

RecipeProviderComponent.cs 386 B

12345678910111213
  1. using Robust.Shared.Prototypes;
  2. namespace Content.Shared.Kitchen.Components;
  3. [RegisterComponent]
  4. public sealed partial class FoodRecipeProviderComponent : Component
  5. {
  6. /// <summary>
  7. /// These are additional recipes that the entity is capable of cooking.
  8. /// </summary>
  9. [DataField, ViewVariables]
  10. public List<ProtoId<FoodRecipePrototype>> ProvidedRecipes = new();
  11. }