summaryrefslogtreecommitdiffstats
path: root/native/src/window.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-01-16 04:45:37 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-01-16 04:45:37 +0100
commit17873774502b20cdcaaf96f88f6f6c705f91e15c (patch)
treedad0f6be63654d2f1f4cc122ca9b40ede7719e31 /native/src/window.rs
parenta508b007d8c00e16aaf44b1968b89cf0908c3a51 (diff)
downloadiced-17873774502b20cdcaaf96f88f6f6c705f91e15c.tar.gz
iced-17873774502b20cdcaaf96f88f6f6c705f91e15c.tar.bz2
iced-17873774502b20cdcaaf96f88f6f6c705f91e15c.zip
Create `window::Mode` in `iced_native`
Diffstat (limited to 'native/src/window.rs')
-rw-r--r--native/src/window.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/native/src/window.rs b/native/src/window.rs
index db9226dc..7e30c782 100644
--- a/native/src/window.rs
+++ b/native/src/window.rs
@@ -1,6 +1,8 @@
//! Build window-based GUI applications.
mod event;
+mod mode;
mod renderer;
pub use event::Event;
+pub use mode::Mode;
pub use renderer::{Renderer, Target};