expose touch module

This commit is contained in:
Artur Sapek 2022-04-12 22:32:41 -06:00 committed by Héctor Ramón Jiménez
parent 388b3c3b33
commit 4a3c3e2a18
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
2 changed files with 3 additions and 0 deletions

View file

@ -177,6 +177,7 @@ pub mod mouse;
pub mod overlay;
pub mod settings;
pub mod time;
pub mod touch;
pub mod widget;
pub mod window;

2
src/touch.rs Normal file
View file

@ -0,0 +1,2 @@
//! Listen and react to touch events.
pub use crate::runtime::touch::{Event, Finger};