Added initial touch events to support iOS
This commit is contained in:
parent
9da6ce474c
commit
e19a07d400
13 changed files with 165 additions and 47 deletions
|
|
@ -1,5 +1,5 @@
|
|||
use crate::{
|
||||
input::{keyboard, mouse},
|
||||
input::{keyboard, mouse, touch},
|
||||
window,
|
||||
};
|
||||
|
||||
|
|
@ -19,4 +19,7 @@ pub enum Event {
|
|||
|
||||
/// A window event
|
||||
Window(window::Event),
|
||||
|
||||
/// A touch event
|
||||
Touch(touch::Touch),
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue