shadPS4/src/GUI/ElfViewer.h
2023-06-19 07:51:56 +03:00

11 lines
No EOL
172 B
C++

#pragma once
#include "../Core/PS4/Loader/Elf.h"
class ElfViewer {
private:
Elf* elf;
public:
ElfViewer(Elf* elf);
void display(bool enabled);//display imgui window
};