Egui Memory Editor

This is a simple memory editor/viewer utility for the immediate mode UI library egui

screenshot

Features

Usage

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::::new(|memory, address| memory.readvalueat(address)) .withaddressrange("All", 0..0xFFFF) .withwritefunction(|memory, address, value| memory.writevalueat(address, value)) .withwindow_title("Hello Editor!");

// In your egui rendering simply include the following: memoryeditor.windowui(ctx, &mut memory); ```

Running example

To run the example do the following:

  1. git clone https://github.com/Hirtol/egui_memory_editor
  2. cd egui_memory_editor
  3. cargo run --example simple --release

Feature Showcase

gif