13 lines
286 B
Rust
13 lines
286 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;
|
|
|
|
pub use crate::core::window::*;
|
|
pub use crate::native::window::*;
|
|
pub use crate::shell::window::*;
|