iced/examples/tour/src/lib.rs
2019-09-19 15:01:12 +02:00

11 lines
156 B
Rust

pub mod tour;
pub use tour::{Message, Tour};
mod widget;
#[cfg(target_arch = "wasm32")]
mod web;
#[cfg(not(target_arch = "wasm32"))]
pub mod iced_ggez;