azalea_protocol/packets/game/
s_recipe_book_seen_recipe.rs

1use azalea_buf::AzBuf;
2use azalea_core::resource_location::ResourceLocation;
3use azalea_protocol_macros::ServerboundGamePacket;
4
5#[derive(Clone, Debug, AzBuf, ServerboundGamePacket)]
6pub struct ServerboundRecipeBookSeenRecipe {
7    pub recipe: ResourceLocation,
8}