From 11f5527d7645619f49b030e30485f24ac637efbd Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 18 Aug 2022 14:39:15 +0200 Subject: Implement `SetMode` and `FetchMode` window actions --- native/src/window.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'native/src/window.rs') diff --git a/native/src/window.rs b/native/src/window.rs index 62487fb9..f910b8f2 100644 --- a/native/src/window.rs +++ b/native/src/window.rs @@ -1,6 +1,8 @@ //! Build window-based GUI applications. mod action; mod event; +mod mode; pub use action::Action; pub use event::Event; +pub use mode::Mode; -- cgit