summaryrefslogtreecommitdiffstats
path: root/src/window.rs
blob: aba4bce881f9a91ebc3c88acf8f69b8fb551860d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
//! 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::*;