easy_imgui_window/
lib.rs

1/*!
2* This crate makes it easy to build applications with Dear ImGui as their main GUI.
3*
4* # Features
5*  * `clipboard` (default): clipboard integration, via the `arboard` crate.
6*  * `freetype`: use `libfreetype` for TTF font loading. It requires a precompiled native FreeType
7*    shared library.
8*/
9
10pub mod conv;
11mod window;
12
13pub use easy_imgui;
14pub use easy_imgui_renderer;
15pub use easy_imgui_sys;
16pub use glutin;
17pub use window::*;
18pub use winit;