imgui elfviewer window . first draft

This commit is contained in:
georgemoralis 2023-05-03 19:40:47 +03:00
parent f35f7b62cd
commit dda7020ef4
5 changed files with 83 additions and 1 deletions

11
src/GUI/ElfViewer.h Normal file
View file

@ -0,0 +1,11 @@
#pragma once
#include "../Loader/Elf.h"
class ElfViewer {
private:
Elf* elf;
public:
ElfViewer(Elf* elf);
void display(bool enabled);//display imgui window
};