Introduce opaque window::Id type

This commit is contained in:
Richard 2022-06-21 15:59:45 -03:00 committed by bungoboingo
parent 8fdd5ee8b6
commit ec56c0686d
6 changed files with 48 additions and 12 deletions

View file

@ -1,10 +1,12 @@
//! Build window-based GUI applications.
mod action;
mod event;
mod id;
mod mode;
mod user_attention;
pub use action::Action;
pub use event::Event;
pub use id::Id;
pub use mode::Mode;
pub use user_attention::UserAttention;