chunkedge_protocol/packets/play/
set_entity_data_s2c.rs

1use chunkedge_binary::{Decode, Encode, RawBytes, VarInt};
2
3use crate::Packet;
4
5#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
6pub struct SetEntityDataS2c<'a> {
7    pub entity_id: VarInt,
8    pub tracked_values: RawBytes<'a>,
9}