summaryrefslogblamecommitdiffstats
path: root/src/window.rs
blob: eb5e17a6e170814b44892d13f0b3de59356cd6b7 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                 
             

             


                   
                           
                           


                                                  
//! 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::{move_to, resize};