chunkedge_protocol/packets/play/
use_item_c2s.rs1use chunkedge_binary::{Decode, Encode, VarInt};
2
3use crate::{Hand, Packet};
4
5#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
6pub struct UseItemC2s {
7 pub hand: Hand,
8 pub sequence: VarInt,
9 pub yaw: f32,
10 pub pitch: f32,
11}