GetSecretRecipesEvent.cs 257 B

12345678910
  1. namespace Content.Shared.Kitchen;
  2. /// <summary>
  3. /// This returns a list of recipes not found in the main list of available recipes.
  4. /// </summary>
  5. [ByRefEvent]
  6. public struct GetSecretRecipesEvent()
  7. {
  8. public List<FoodRecipePrototype> Recipes = new();
  9. }