valence_protocol/packets/play/
recipe_book_data_c2s.rs
1use std::borrow::Cow;
2
3use valence_ident::Ident;
4
5use crate::{Decode, Encode, Packet};
6
7#[derive(Clone, Debug, Encode, Decode, Packet)]
8pub struct RecipeBookDataC2s<'a> {
9 pub recipe_id: Ident<Cow<'a, str>>,
10}