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

use crate::common::debug_subscription::DebugSubscriptionUpdate;

#[derive(AzBuf, ClientboundGamePacket, Clone, Debug, PartialEq)]
pub struct ClientboundDebugEntityValue {
    pub entity_id: MinecraftEntityId,
    pub update: DebugSubscriptionUpdate,
}