aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_debug_block_value.rs
blob: 5276ef48e622988eaf2081b8c8a6214e58d711c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
use azalea_buf::AzBuf;
use azalea_core::position::BlockPos;
use azalea_protocol_macros::ClientboundGamePacket;

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

#[derive(AzBuf, ClientboundGamePacket, Clone, Debug, PartialEq)]
pub struct ClientboundDebugBlockValue {
    pub block_pos: BlockPos,
    pub update: DebugSubscriptionUpdate,
}