* Add special microwave board to Combat Bakery Kit * use event instead of trycomp * make the board sus * add instructions note * embarrassing typo * Add functionality to Donk Co. microwave instead * update note
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();
|
|
}
|