Added initial touch events to support iOS

This commit is contained in:
Sebastian Imlay 2019-11-11 20:29:58 -08:00
parent 9da6ce474c
commit e19a07d400
13 changed files with 165 additions and 47 deletions

View file

@ -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),
}