diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -230,7 +230,9 @@ pub mod keyboard { pub mod mouse { //! Listen and react to mouse events. - pub use crate::core::mouse::{Button, Event, Interaction, ScrollDelta}; + pub use crate::core::mouse::{ + Button, Cursor, Event, Interaction, ScrollDelta, + }; } pub mod subscription { @@ -276,6 +278,7 @@ pub mod widget { mod native {} mod renderer {} mod style {} + mod runtime {} } pub use application::Application; |