chunkedge_protocol/packets/play/
tag_query_s2c.rs

1use chunkedge_binary::{Decode, Encode, VarInt};
2use chunkedge_nbt::Compound;
3
4use crate::Packet;
5#[derive(Clone, Debug, Encode, Decode, Packet)]
6pub struct TagQueryS2c {
7    pub transaction_id: VarInt,
8    pub nbt: Compound,
9}