diff options
author | bunnei <bunneidev@gmail.com> | 2019-03-21 21:41:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-21 21:41:59 -0400 |
commit | 639f0c524d3406b7c156dc75af4e934c6b5adcb6 (patch) | |
tree | e03093771bbffc832c48670331cf9af54aa4a9fc /src/core/core.h | |
parent | 839c0f829b109da8e7c69fe17dd5b054b54a12ac (diff) | |
parent | 52ac6419dafb84b10369226d3746b3b5b761d33b (diff) |
Merge pull request #1933 from DarkLordZach/cheat-engine
file_sys: Implement parser and interpreter for game memory cheats
Diffstat (limited to 'src/core/core.h')
-rw-r--r-- | src/core/core.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h index ba76a41d8..4d83b93cc 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -20,6 +20,7 @@ class WebBrowserApplet; } // namespace Core::Frontend namespace FileSys { +class CheatList; class VfsFilesystem; } // namespace FileSys @@ -253,6 +254,9 @@ public: std::shared_ptr<FileSys::VfsFilesystem> GetFilesystem() const; + void RegisterCheatList(const std::vector<FileSys::CheatList>& list, const std::string& build_id, + VAddr code_region_start, VAddr code_region_end); + void SetProfileSelector(std::unique_ptr<Frontend::ProfileSelectApplet> applet); const Frontend::ProfileSelectApplet& GetProfileSelector() const; |