blob: 14150ea198cc17e26261f9ac52359f2a25e7099b (
plain)
1
2
3
4
5
6
7
8
|
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundGamePacket;
use uuid::Uuid;
#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundResourcePackPop {
pub id: Option<Uuid>,
}
|