11 lines
242 B
Rust
11 lines
242 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::{PlatformSpecific, Settings};
|
|
|
|
pub use crate::runtime::window::*;
|