blob: 73e90243e49c0344c73761539d74d67a642c184e (
plain) (
blame)
1
2
3
4
5
6
7
|
//! Configure the window of your application in native platforms.
pub use iced_native::window::Icon;
pub use iced_native::window::Position;
pub use iced_native::window::Settings;
#[cfg(not(target_arch = "wasm32"))]
pub use crate::runtime::window::*;
|