chunkedge_protocol/packets/configuration/
pong_c2s.rs1use chunkedge_binary::{Decode, Encode};
2
3use crate::{Packet, PacketState};
4
5#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
6#[packet(state = PacketState::Configuration)]
7pub struct PongC2s(pub i32);