1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
mod allocator;
mod app;
pub mod event;
mod integration;
mod presenters;
mod renderer;
mod run;
#[cfg(feature = "persistence")]
pub mod storage;
mod utils;

pub use egui_winit::winit;
pub use raw_window_handle;

pub use allocator::*;
pub use app::*;
pub use renderer::*;
pub use run::*;

#[cfg(feature = "gpu-allocator")]
mod gpu_allocator;
#[cfg(feature = "gpu-allocator")]
pub use crate::gpu_allocator::*;