aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/s_spectate_entity.rs
blob: c9e5a9853e23d5bfa20d4f698c823d6864eaf326 (plain)
1
2
3
4
5
6
7
8
use azalea_buf::AzBuf;
use azalea_core::entity_id::MinecraftEntityId;
use azalea_protocol_macros::ServerboundGamePacket;

#[derive(Clone, Debug, AzBuf, PartialEq, ServerboundGamePacket)]
pub struct ServerboundSpectateEntity {
    pub entity_id: MinecraftEntityId,
}