egui/egui_demo_app/src/apps/mod.rs

16 lines
244 B
Rust
Raw Normal View History

#[cfg(feature = "glow")]
mod custom3d;
2021-01-01 20:27:10 +00:00
mod fractal_clock;
#[cfg(feature = "http")]
2021-01-01 16:11:05 +00:00
mod http_app;
#[cfg(feature = "glow")]
pub use custom3d::Custom3d;
2021-01-01 20:27:10 +00:00
pub use fractal_clock::FractalClock;
#[cfg(feature = "http")]
2021-01-01 16:11:05 +00:00
pub use http_app::HttpApp;