shadPS4/src/GUI/ElfViewer.h
2023-11-06 01:11:54 +02:00

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;
};