chunkedge_protocol/packets/play/
ping_request_c2s.rs

1use chunkedge_binary::{Decode, Encode};
2
3use crate::Packet;
4
5#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
6pub struct PingRequestC2s {
7    pub payload: u64,
8}