aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/s_debug_subscription_request.rs
blob: 23bd49a5abf2e554dd47db5039a9732baac8be3a (plain)
1
2
3
4
5
6
7
8
use azalea_buf::AzBuf;
use azalea_protocol_macros::ServerboundGamePacket;
use azalea_registry::builtin::DebugSubscription;

#[derive(Clone, Debug, AzBuf, PartialEq, ServerboundGamePacket)]
pub struct ServerboundDebugSubscriptionRequest {
    pub subscriptions: Vec<DebugSubscription>,
}