mirror of
https://github.com/KytyPS5/KytyPS5.git
synced 2026-08-03 11:23:49 +00:00
23 lines
471 B
C++
23 lines
471 B
C++
#ifndef EMULATOR_INCLUDE_EMULATOR_EMULATOR_H_
|
|
#define EMULATOR_INCLUDE_EMULATOR_EMULATOR_H_
|
|
|
|
#include "common/emulatorConfig.h"
|
|
#include "common/stringUtils.h"
|
|
|
|
#include <filesystem>
|
|
|
|
namespace Emulator {
|
|
|
|
struct RunOptions {
|
|
Config::ConfigOptions config;
|
|
std::filesystem::path app0_dir;
|
|
std::filesystem::path elf;
|
|
std::filesystem::path game_patch;
|
|
};
|
|
|
|
void Run(const RunOptions& options);
|
|
|
|
} // namespace Emulator
|
|
|
|
#endif /* EMULATOR_INCLUDE_EMULATOR_EMULATOR_H_ */
|