summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-12-22 21:32:05 -0500
committerZach Hilman <zachhilman@gmail.com>2019-03-04 18:41:29 -0500
commit70535466877748ed765c11170c573767f61bd744 (patch)
tree956127b47ab9296e9591e256ed9d8c0492102e6a /src/core/core.h
parent769b3466823d988d262b13325c6eb926770d0868 (diff)
core: Add support for registering and controlling ownership of CheatEngine
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h
index d720013f7..bfb75631e 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);
+
void SetProfileSelector(std::unique_ptr<Frontend::ProfileSelectApplet> applet);
const Frontend::ProfileSelectApplet& GetProfileSelector() const;