//! Create interactive, native cross-platform applications. use crate::{Error, Executor}; pub use iced_winit::multi_window::{Application, StyleSheet}; use iced_winit::Settings; /// Runs an [`Application`] with an executor, compositor, and the provided /// settings. pub fn run( _settings: Settings, _compositor_settings: C::Settings, ) -> Result<(), Error> where A: Application + 'static, E: Executor + 'static, C: iced_graphics::window::GLCompositor + 'static, ::Theme: StyleSheet, { unimplemented!("iced_glutin not implemented!") }