blob: 5a199580bfd981fe09a0a3224efbc0c26d77319e (
plain) (
tree)
|
|
//! 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::runtime::window::*;
|