egui/egui_demo_lib/src/apps/mod.rs

16 lines
338 B
Rust
Raw Normal View History

2021-01-01 23:13:34 +00:00
mod color_test;
2021-01-01 16:11:05 +00:00
mod demo;
mod easy_mark_editor;
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;
2021-01-01 23:13:34 +00:00
pub use color_test::ColorTest;
2021-01-01 16:11:05 +00:00
pub use demo::DemoApp;
pub use easy_mark_editor::EasyMarkEditor;
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;
pub use demo::DemoWindows; // used for tests