use bevy::{prelude::*, render::extract_component::ExtractComponent};
#[derive(SystemSet, Debug, Hash, PartialEq, Eq, Clone)]
pub enum VelloExtractStep {
ExtractAssets,
RunDiagnostics,
}
#[derive(Component, Default, Clone, ExtractComponent)]
pub struct VelloRenderTarget(pub Handle<Image>);