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

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