summaryrefslogtreecommitdiffstats
path: root/src/window.rs
blob: 7d4410622e7ea2f5d4973e9898c7a8b9cfd9f2ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
//! Configure the window of your application in native platforms.
mod mode;
mod position;
mod settings;

pub mod icon;

pub use icon::Icon;
pub use mode::Mode;
pub use position::Position;
pub use settings::Settings;