aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/login/serverbound_hello_packet.rs
blob: eb6a4065774994c82fb071ae49bbd7c3b18c3693 (plain)
1
2
3
4
5
6
7
use packet_macros::LoginPacket;
use std::hash::Hash;

#[derive(Hash, Clone, Debug, LoginPacket)]
pub struct ServerboundHelloPacket {
    pub username: String,
}