aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_debug_sample.rs
blob: 50550062229366b7d7451aa17c36869656e7bef0 (plain)
1
2
3
4
5
6
7
8
9
10
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundGamePacket;

use super::s_debug_sample_subscription::RemoteDebugSampleType;

#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundDebugSample {
    pub sample: Vec<u64>,
    pub debug_sample_type: RemoteDebugSampleType,
}