Files
Cagire/plugins/egui-baseview/src/lib.rs
Raphaël Forment b728b38d6e
Some checks failed
Deploy Website / deploy (push) Failing after 29s
Feat: add hidden mode and new documentation
2026-02-26 12:31:56 +01:00

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;