Merge branch 'ios-support-wip' into feature/touch-support

This commit is contained in:
Héctor Ramón Jiménez 2020-12-15 06:13:19 +01:00
commit 09110a93b0
11 changed files with 186 additions and 41 deletions

View file

@ -1,5 +1,8 @@
//! Handle events of a user interface.
use crate::{keyboard, mouse, window};
use crate::keyboard;
use crate::mouse;
use crate::touch;
use crate::window;
/// A user interface event.
///
@ -17,6 +20,9 @@ pub enum Event {
/// A window event
Window(window::Event),
/// A touch event
Touch(touch::Touch),
}
/// The status of an [`Event`] after being processed.