mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-22 11:25:02 +00:00
11 lines
No EOL
172 B
C++
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
|
|
|
|
}; |