2020-01-16 05:54:22 +01:00
|
|
|
//! Configure the window of your application in native platforms.
|
2021-07-21 18:59:24 +07:00
|
|
|
mod position;
|
2020-01-16 05:54:22 +01:00
|
|
|
mod settings;
|
|
|
|
|
|
2020-07-01 06:09:39 +02:00
|
|
|
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};
|
2021-09-02 16:30:14 +07:00
|
|
|
|
2022-11-09 23:56:12 +01:00
|
|
|
pub use crate::runtime::window::*;
|