mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-04-27 13:25:23 -06:00
16 lines
201 B
C++
16 lines
201 B
C++
#pragma once
|
|
|
|
namespace Core::Loader {
|
|
class Elf;
|
|
}
|
|
|
|
class ElfViewer {
|
|
public:
|
|
explicit ElfViewer(Core::Loader::Elf* elf);
|
|
|
|
void Display(bool enabled);
|
|
|
|
private:
|
|
Core::Loader::Elf* elf;
|
|
};
|