Files
KytyPS5/src/emulator.h
T
2026-07-27 16:19:31 +02:00

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_ */