12 lines
258 B
Rust
12 lines
258 B
Rust
//! 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;
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
pub use crate::runtime::window::*;
|