chunkedge_protocol/packets/configuration/
pong_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::Configuration)]
7// Response to the [PingS2c](crate::packets::configuration::PingS2c) packet.
8pub struct PongC2s(pub i32);