blob: ea31b113ca21daf16648501f77ce5ee88af200bb (
plain)
1
2
3
4
5
6
7
8
|
use azalea_buf::AzBuf;
use azalea_protocol_macros::ServerboundGamePacket;
use azalea_registry::DebugSubscription;
#[derive(Clone, Debug, AzBuf, PartialEq, ServerboundGamePacket)]
pub struct ServerboundDebugSubscriptionRequest {
pub subscriptions: Vec<DebugSubscription>,
}
|