use crate::{error::PatchError, layer_handler::PatchData};
use metaverse_messages::udp::environment::layer_data::LayerData;
#[derive(Debug, Clone)]
pub struct Cloud;
impl PatchData for Cloud {
fn from_packet(_: &LayerData, _: bool) -> Result<Vec<Self>, PatchError> {
Ok(vec![])
}
}