From 7ab6ed7ef912011318e07533e40fc98f4a846511 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 10 Jan 2020 01:28:45 +0100 Subject: Add `window::Event::Resized` to `iced_native` --- native/src/window.rs | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 native/src/window.rs (limited to 'native/src/window.rs') diff --git a/native/src/window.rs b/native/src/window.rs new file mode 100644 index 00000000..220bb3be --- /dev/null +++ b/native/src/window.rs @@ -0,0 +1,4 @@ +//! Build window-based GUI applications. +mod event; + +pub use event::Event; -- cgit