Merge branch 'ios-support-wip' into feature/touch-support
This commit is contained in:
commit
09110a93b0
11 changed files with 186 additions and 41 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue