13 lines
220 B
Rust
13 lines
220 B
Rust
//! Egui integration layer for baseview windows.
|
|
|
|
mod renderer;
|
|
mod translate;
|
|
mod window;
|
|
|
|
pub use window::{EguiWindow, KeyCapture, Queue};
|
|
|
|
pub use egui;
|
|
pub use renderer::GraphicsConfig;
|
|
|
|
pub use keyboard_types::Key;
|