use bevy_ecs::event::Event; #[derive(Event, Debug, Copy, Clone)] pub enum MouseWheelEvent { Line { x: f64, y: f64 }, Pixel { x: f64, y: f64 }, }