iced/src/window.rs
Bingus d53ccc857d
refactored window storage;
new helper window events (Destroyed, Created);
clippy + fmt;
2023-07-21 13:53:38 -07:00

8 lines
170 B
Rust

//! Configure the window of your application in native platforms.
pub mod icon;
pub use icon::Icon;
pub use crate::core::window::*;
pub use crate::runtime::window::*;