valence_protocol/packets/play/resource_pack_status_c2s.rs
1use crate::{Decode, Encode, Packet};
2
3#[derive(Copy, Clone, PartialEq, Eq, Debug, Encode, Decode, Packet)]
4pub enum ResourcePackStatusC2s {
5 /// The client has successfully loaded the server's resource pack.
6 SuccessfullyLoaded,
7 /// The client has declined the server's resource pack.
8 Declined,
9 /// The client has failed to download the server's resource pack.
10 FailedDownload,
11 /// The client has accepted the server's resource pack.
12 Accepted,
13}