2020-01-16 05:54:22 +01:00
|
|
|
//! Configure the window of your application in native platforms.
|
|
|
|
|
mod mode;
|
|
|
|
|
mod settings;
|
|
|
|
|
|
2020-07-01 06:09:39 +02:00
|
|
|
pub mod icon;
|
|
|
|
|
|
|
|
|
|
pub use icon::Icon;
|
2020-01-16 05:54:22 +01:00
|
|
|
pub use mode::Mode;
|
|
|
|
|
pub use settings::Settings;
|