blob: af0c42379fd691d77fb9f697bee592cee128c938 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
use std::hash::Hash;
use azalea_buf::{AzBuf, UnsizedByteArray};
use azalea_protocol_macros::ServerboundLoginPacket;
#[derive(Hash, Clone, Debug, AzBuf, PartialEq, ServerboundLoginPacket)]
pub struct ServerboundCustomQueryAnswer {
#[var]
pub transaction_id: u32,
pub data: Option<UnsizedByteArray>,
}
|