mirror of
https://github.com/emilk/egui.git
synced 2026-09-02 06:40:06 -04:00
Move all crates into a crates directory (#1940)
This commit is contained in:
21
crates/egui_demo_app/src/apps/mod.rs
Normal file
21
crates/egui_demo_app/src/apps/mod.rs
Normal file
@@ -0,0 +1,21 @@
|
||||
#[cfg(all(feature = "glow", not(feature = "wgpu")))]
|
||||
mod custom3d_glow;
|
||||
|
||||
#[cfg(feature = "wgpu")]
|
||||
mod custom3d_wgpu;
|
||||
|
||||
mod fractal_clock;
|
||||
|
||||
#[cfg(feature = "http")]
|
||||
mod http_app;
|
||||
|
||||
#[cfg(all(feature = "glow", not(feature = "wgpu")))]
|
||||
pub use custom3d_glow::Custom3d;
|
||||
|
||||
#[cfg(feature = "wgpu")]
|
||||
pub use custom3d_wgpu::Custom3d;
|
||||
|
||||
pub use fractal_clock::FractalClock;
|
||||
|
||||
#[cfg(feature = "http")]
|
||||
pub use http_app::HttpApp;
|
||||
Reference in New Issue
Block a user