iced-yoda/examples/tour/src/lib.rs

12 lines
156 B
Rust
Raw Normal View History

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;