valence_protocol/packets/play/
player_list_header_s2c.rs
1use std::borrow::Cow;
2
3use valence_text::Text;
4
5use crate::{Decode, Encode, Packet};
6
7#[derive(Clone, Debug, Encode, Decode, Packet)]
8pub struct PlayerListHeaderS2c<'a> {
9 pub header: Cow<'a, Text>,
10 pub footer: Cow<'a, Text>,
11}