1 2 3 4 5 6 7
use geom::Point; #[derive(Clone, Debug)] pub enum Event { Click { pos: Point }, Resize { aspect_ratio: f32 }, }