Add window::Event::Resized to iced_native

This commit is contained in:
Héctor Ramón Jiménez 2020-01-10 01:28:45 +01:00
parent 0a83024505
commit 7ab6ed7ef9
4 changed files with 24 additions and 1 deletions

4
native/src/window.rs Normal file
View file

@ -0,0 +1,4 @@
//! Build window-based GUI applications.
mod event;
pub use event::Event;