chunkedge_protocol/packets/configuration/finish_configuration_s2c.rs
1use chunkedge_binary::{Decode, Encode};
2
3use crate::{Packet, PacketState};
4
5#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
6#[packet(state = PacketState::Configuration)]
7/// Sent by the server to the client to finish the configuration process. The
8/// client should send a
9/// [`FinishConfigurationC2s`](crate::packets::configuration::FinishConfigurationC2s) packet after
10/// receiving this packet.
11pub struct FinishConfigurationS2c;