chunkedge_protocol/packets/login/
login_acknowledged_c2s.rs

1use chunkedge_binary::{Decode, Encode};
2
3use crate::{Packet, PacketState};
4
5#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
6#[packet(state = PacketState::Login)]
7/// Sent by the client to the server to acknowledge the login process.
8pub struct LoginAcknowledgedC2s;