chunkedge_protocol/packets/play/
command_suggestion_c2s.rs1use chunkedge_binary::{Bounded, Decode, Encode, VarInt};
2
3use crate::Packet;
4
5#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
6pub struct CommandSuggestionC2s<'a> {
7 pub transaction_id: VarInt,
8 pub text: Bounded<&'a str, 32500>,
9}