blob: 1b96d44513e23b920fb064b61b97202f9bc877e3 (
plain)
1
2
3
4
5
6
7
8
|
use azalea_buf::AzBuf;
use azalea_protocol_macros::ServerboundLoginPacket;
#[derive(Clone, Debug, AzBuf, ServerboundLoginPacket)]
pub struct ServerboundKey {
pub key_bytes: Vec<u8>,
pub encrypted_challenge: Vec<u8>,
}
|