From a97401aed2a173260a4abfdb65a77975ce6c0f01 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sat, 14 Sep 2019 19:16:06 +0200 Subject: Rethink workspace structure --- core/src/event.rs | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 core/src/event.rs (limited to 'core/src/event.rs') diff --git a/core/src/event.rs b/core/src/event.rs deleted file mode 100644 index 71f06006..00000000 --- a/core/src/event.rs +++ /dev/null @@ -1,16 +0,0 @@ -use crate::input::{keyboard, mouse}; - -/// A user interface event. -/// -/// _**Note:** This type is largely incomplete! If you need to track -/// additional events, feel free to [open an issue] and share your use case!_ -/// -/// [open an issue]: https://github.com/hecrj/iced/issues -#[derive(PartialEq, Clone, Copy, Debug)] -pub enum Event { - /// A keyboard event - Keyboard(keyboard::Event), - - /// A mouse event - Mouse(mouse::Event), -} -- cgit