azalea_protocol/packets/game/
s_spectate_entity.rs1use azalea_buf::AzBuf;
2use azalea_core::entity_id::MinecraftEntityId;
3use azalea_protocol_macros::ServerboundGamePacket;
4
5#[derive(Clone, Debug, AzBuf, PartialEq, ServerboundGamePacket)]
6pub struct ServerboundSpectateEntity {
7 pub entity_id: MinecraftEntityId,
8}