iced-yoda/src/window.rs
2023-03-14 11:31:15 +01:00

11 lines
242 B
Rust

//! Configure the window of your application in native platforms.
mod position;
mod settings;
pub mod icon;
pub use icon::Icon;
pub use position::Position;
pub use settings::{PlatformSpecific, Settings};
pub use crate::runtime::window::*;