iced-yoda/src/window.rs

13 lines
274 B
Rust
Raw Normal View History

//! Configure the window of your application in native platforms.
2021-07-21 18:59:24 +07:00
mod position;
mod settings;
pub mod icon;
pub use icon::Icon;
2021-07-21 18:59:24 +07:00
pub use position::Position;
2023-02-23 14:33:53 +01:00
pub use settings::{PlatformSpecific, Settings};
pub use crate::core::window::*;
2023-03-05 06:35:20 +01:00
pub use crate::runtime::window::*;