summaryrefslogtreecommitdiffstats
path: root/src/core/core.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-12-11 03:52:19 +0100
committerGitHub <noreply@github.com>2018-12-11 03:52:19 +0100
commit2c45c6d23431021efb1053abcb40064256aac338 (patch)
treeedd00a30fa32460e8158992d53768038e83141dc /src/core/core.h
parentMerge pull request #1887 from FearlessTobi/port-4476 (diff)
parentqt: Add Properties menu to game list right-click (diff)
downloadyuzu-2c45c6d23431021efb1053abcb40064256aac338.tar
yuzu-2c45c6d23431021efb1053abcb40064256aac338.tar.gz
yuzu-2c45c6d23431021efb1053abcb40064256aac338.tar.bz2
yuzu-2c45c6d23431021efb1053abcb40064256aac338.tar.lz
yuzu-2c45c6d23431021efb1053abcb40064256aac338.tar.xz
yuzu-2c45c6d23431021efb1053abcb40064256aac338.tar.zst
yuzu-2c45c6d23431021efb1053abcb40064256aac338.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 be71bd437..71031dfcf 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -9,6 +9,7 @@
#include <string>
#include "common/common_types.h"
+#include "core/file_sys/vfs_types.h"
#include "core/hle/kernel/object.h"
namespace Core::Frontend {
@@ -55,6 +56,9 @@ class TelemetrySession;
struct PerfStatsResults;
+FileSys::VirtualFile GetGameFileFromPath(const FileSys::VirtualFilesystem& vfs,
+ const std::string& path);
+
class System {
public:
System(const System&) = delete;