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

pub use crate::core::window::*;
pub use crate::native::window::*;
pub use crate::shell::window::*;