summaryrefslogtreecommitdiffstats
path: root/examples/tour/src/lib.rs
blob: eb41fcd96e259b4f9a0758bfac75f413054c3bb6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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;