1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-27 15:13:12 -04:00
Files
egui/crates/eframe/src/native/mod.rs
Emil Ernerfeldt 960b01b67a Refactor: move code around in eframe (#3575)
`run.rs` was getting way too long and complex.
2023-11-19 12:12:43 +01:00

16 lines
289 B
Rust

mod app_icon;
mod epi_integration;
pub mod run;
/// File storage which can be used by native backends.
#[cfg(feature = "persistence")]
pub mod file_storage;
pub(crate) mod winit_integration;
#[cfg(feature = "glow")]
mod glow_integration;
#[cfg(feature = "wgpu")]
mod wgpu_integration;