diff options
author | 2019-10-10 05:44:33 +0200 | |
---|---|---|
committer | 2019-10-10 05:44:33 +0200 | |
commit | fb8b50ab793bd54976bb8c5b4b890c9f97f17c54 (patch) | |
tree | 9da83a5923dee7c8129b47fbda2851d72ea08244 /winit/src/lib.rs | |
parent | a92a0b73ed7ed935df762d06c4249894fd35b227 (diff) | |
download | iced-fb8b50ab793bd54976bb8c5b4b890c9f97f17c54.tar.gz iced-fb8b50ab793bd54976bb8c5b4b890c9f97f17c54.tar.bz2 iced-fb8b50ab793bd54976bb8c5b4b890c9f97f17c54.zip |
Move `winit` conversions to `iced_winit`
Diffstat (limited to 'winit/src/lib.rs')
-rw-r--r-- | winit/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/winit/src/lib.rs b/winit/src/lib.rs index 93e922d5..73745794 100644 --- a/winit/src/lib.rs +++ b/winit/src/lib.rs @@ -1,6 +1,8 @@ pub use iced_native::*; pub use winit; +pub mod conversion; + pub use iced_native::renderer::Windowed; pub trait Application { |