11 lines
257 B
C#
11 lines
257 B
C#
|
|
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();
|
||
|
|
}
|