blob: c53e5e1295c645dc97ad49b15c1d992067d2d80e (
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(Clone, Debug, AzBuf, PartialEq, ClientboundGamePacket)]
pub struct ClientboundDebugEvent {
pub event: DebugSubscriptionEvent,
}
|