9 lines
174 B
Rust
9 lines
174 B
Rust
//! Configure the window of your application in native platforms.
|
|
mod mode;
|
|
mod settings;
|
|
|
|
pub mod icon;
|
|
|
|
pub use icon::Icon;
|
|
pub use mode::Mode;
|
|
pub use settings::Settings;
|