blob: a57e5548f271a083eb0ca8893528e60966ffb189 (
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(Clone, Debug, AzBuf, PartialEq, ClientboundGamePacket)]
pub struct ClientboundDebugEntityValue {
pub entity_id: MinecraftEntityId,
pub update: DebugSubscriptionUpdate,
}
|