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

use crate::common::debug_subscription::DebugSubscriptionEvent;

#[derive(AzBuf, ClientboundGamePacket, Clone, Debug, PartialEq)]
pub struct ClientboundDebugEvent {
    pub event: DebugSubscriptionEvent,
}