diff --git a/README.md b/README.md index 5f57a0e..a1d982d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,11 @@ This tool helps you inspect raw bytes and interpret them as types (structs, arrays, primitives, pointers, padding) instead of just hex. It is essentially a debugging tool for figuring out unknown data structures either runtime or from some static source. +![Type chooser and struct inspection](docs/README_PIC1.png) + +![VTable pointer expansion with disassembly preview](docs/README_PIC2.png) + +![Split view with rendered C/C++ output](docs/README_PIC3.png) + ## State - MCP (Model Context Protocol) bridge via `ReclassMcpBridge.exe`. The server starts by default and can be stopped from the File menu. It exposes all tool functionality to any MCP-compatible client (e.g. Claude Code) and falls back to UI prompts when the client requests something not yet covered by tools. To connect, add this to your MCP client config (e.g. `.mcp.json`): diff --git a/docs/README_PIC1.png b/docs/README_PIC1.png new file mode 100644 index 0000000..5f4595b Binary files /dev/null and b/docs/README_PIC1.png differ diff --git a/docs/README_PIC2.png b/docs/README_PIC2.png new file mode 100644 index 0000000..c6fbbf9 Binary files /dev/null and b/docs/README_PIC2.png differ diff --git a/docs/README_PIC3.png b/docs/README_PIC3.png new file mode 100644 index 0000000..606e04b Binary files /dev/null and b/docs/README_PIC3.png differ