diff options
Diffstat (limited to 'native/src/window.rs')
-rw-r--r-- | native/src/window.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/native/src/window.rs b/native/src/window.rs new file mode 100644 index 00000000..4dcae62f --- /dev/null +++ b/native/src/window.rs @@ -0,0 +1,6 @@ +//! Build window-based GUI applications. +mod backend; +mod event; + +pub use backend::Backend; +pub use event::Event; |