chunkedge_protocol/packets/play/
debug_sample_subscription_c2s.rs

1use chunkedge_binary::{Decode, Encode};
2
3use crate::Packet;
4
5#[derive(Clone, Debug, Encode, Decode, Packet)]
6pub struct DebugSampleSubscriptionC2s {
7    pub sample_type: DebugSampleType,
8}
9#[derive(Clone, Debug, Encode, Decode)]
10pub enum DebugSampleType {
11    TickTime,
12}