1use crate::{Decode, Encode, Packet}; 2 3#[derive(Copy, Clone, Debug, Encode, Decode, Packet)] 4pub struct EntityAttachS2c { 5 pub attached_entity_id: i32, 6 pub holding_entity_id: i32, 7}