chunkedge_protocol/packets/play/
player_info_remove_s2c.rs

1use std::borrow::Cow;
2
3use chunkedge_binary::{Decode, Encode};
4use uuid::Uuid;
5
6use crate::Packet;
7
8#[derive(Clone, PartialEq, Debug, Encode, Decode, Packet)]
9pub struct PlayerInfoRemoveS2c<'a> {
10    pub uuids: Cow<'a, [Uuid]>,
11}