summaryrefslogtreecommitdiffstats
path: root/src/core/core.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-12-23 03:32:05 +0100
committerZach Hilman <zachhilman@gmail.com>2019-03-05 00:41:29 +0100
commit70535466877748ed765c11170c573767f61bd744 (patch)
tree956127b47ab9296e9591e256ed9d8c0492102e6a /src/core/core.h
parentcheat_engine: Add parser and interpreter for game cheats (diff)
downloadyuzu-70535466877748ed765c11170c573767f61bd744.tar
yuzu-70535466877748ed765c11170c573767f61bd744.tar.gz
yuzu-70535466877748ed765c11170c573767f61bd744.tar.bz2
yuzu-70535466877748ed765c11170c573767f61bd744.tar.lz
yuzu-70535466877748ed765c11170c573767f61bd744.tar.xz
yuzu-70535466877748ed765c11170c573767f61bd744.tar.zst
yuzu-70535466877748ed765c11170c573767f61bd744.zip
Diffstat (limited to '')
-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;