1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! Safe Rust bindings to Dear ImGui memory editor widget.
//!  
//! See [`MemoryEditor`] struct for more.

mod memory_editor;

// Export safe wrapper.
pub use crate::memory_editor::MemoryEditor;

// Re-export ImU8 type.
pub use imgui_memory_editor_sys::ImU8;