aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_set_entity_link.rs
blob: c4ce8bdf42c6c0cb88710e907aeebd9447b63c02 (plain)
1
2
3
4
5
6
7
8
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundGamePacket;

#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundSetEntityLink {
    pub source_id: u32,
    pub dest_id: u32,
}