use fmc_protocol_derive::{ClientBound, ServerBound};
use serde::{Deserialize, Serialize};
#[derive(ClientBound, Serialize, Deserialize, Debug)]
pub struct AssetResponse {
pub file: Vec<u8>,
}
#[derive(ServerBound, Serialize, Deserialize, Debug, Clone, Copy)]
pub struct AssetRequest;