summaryrefslogtreecommitdiffstats
path: root/native/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Richard <richardsoncusto@gmail.com>2021-07-05 16:23:44 -0300
committerLibravatar Richard <richardsoncusto@gmail.com>2021-07-05 16:24:10 -0300
commit9fc5ad23edca93553137100d167de7b69e88f785 (patch)
treeb9244861c70ff0f1718aabd5fa6e9b835b3857d9 /native/src/lib.rs
parent4994d34abab3222f9a8fd7a9a3e63f969ca97ffc (diff)
downloadiced-9fc5ad23edca93553137100d167de7b69e88f785.tar.gz
iced-9fc5ad23edca93553137100d167de7b69e88f785.tar.bz2
iced-9fc5ad23edca93553137100d167de7b69e88f785.zip
Initial menu implementation
Diffstat (limited to 'native/src/lib.rs')
-rw-r--r--native/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs
index cd214e36..56a933f0 100644
--- a/native/src/lib.rs
+++ b/native/src/lib.rs
@@ -37,6 +37,7 @@ pub mod clipboard;
pub mod event;
pub mod keyboard;
pub mod layout;
+pub mod menu;
pub mod mouse;
pub mod overlay;
pub mod program;
@@ -75,6 +76,7 @@ pub use element::Element;
pub use event::Event;
pub use hasher::Hasher;
pub use layout::Layout;
+pub use menu::{Menu, MenuEntry};
pub use overlay::Overlay;
pub use program::Program;
pub use renderer::Renderer;