6
StarHorizon_Public/Content.Shared/Kitchen/GetSecretRecipesEvent.cs
2025-11-07 12:32:48 +03:00

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();
}