Files
crystall-punk-14/Content.Shared/Kitchen/GetSecretRecipesEvent.cs

11 lines
257 B
C#
Raw Permalink Normal View History

namespace Content.Shared.Kitchen;
/// <summary>
/// This returns a list of recipes not found in the main list of available recipes.
/// </summary>
[ByRefEvent]
public struct GetSecretRecipesEvent()
{
public List<FoodRecipePrototype> Recipes = new();
}