mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-22 19:34:59 +00:00
imgui elfviewer window . first draft
This commit is contained in:
parent
f35f7b62cd
commit
dda7020ef4
5 changed files with 83 additions and 1 deletions
11
src/GUI/ElfViewer.h
Normal file
11
src/GUI/ElfViewer.h
Normal 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
|
||||
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue