This is a simple memory editor/viewer utility for the immediate mode UI library egui
Data Preview
section.It's best to look at the example in the examples/
folder, but one can initialise the editor with any struct of their choosing.
For example, a custom memory struct:
```rust
let mut memory = Memory::new();
// Initialise with read function
let mut memoryeditor = MemoryEditor::
// In your egui rendering simply include the following: memoryeditor.windowui(ctx, &mut memory); ```
To run the example do the following:
git clone https://github.com/Hirtol/egui_memory_editor
cd egui_memory_editor
cargo run --example simple --release