chunkedge_protocol/packets/play/
resource_pack_pop_s2c.rs

1use chunkedge_binary::{Decode, Encode};
2use uuid::Uuid;
3
4use crate::Packet;
5
6#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
7/// If uuid is None, all resource packs are removed. Else, only the resource
8/// pack with the given uuid is removed.
9pub struct ResourcePackPopS2c(pub Option<Uuid>);