use azalea_buf::AzBuf; use azalea_protocol_macros::ServerboundGamePacket; use uuid::Uuid; #[derive(AzBuf, Clone, Debug, PartialEq, ServerboundGamePacket)] pub struct ServerboundResourcePack { pub id: Uuid, pub action: Action, } #[derive(AzBuf, Clone, Copy, Debug, PartialEq)] pub enum Action { SuccessfullyLoaded = 0, Declined = 1, FailedDownload = 2, Accepted = 3, InvalidUrl = 4, FailedReload = 5, Discarded = 6, }