chunkedge_protocol/packets/play/
chat_command_c2s.rs1use std::borrow::Cow;
2
3use chunkedge_binary::{Decode, Encode};
4
5use crate::Packet;
6
7#[derive(Clone, Debug, Encode, Decode, Packet)]
8pub struct ChatCommandC2s<'a> {
9 pub command: Cow<'a, str>,
10}