mirror of
https://github.com/KytyPS5/KytyPS5.git
synced 2026-08-03 11:23:49 +00:00
21 lines
336 B
C++
21 lines
336 B
C++
#ifndef KYTY_LOADER_GAME_PATCH_H_
|
|
#define KYTY_LOADER_GAME_PATCH_H_
|
|
|
|
#include "common/common.h"
|
|
|
|
#include <filesystem>
|
|
|
|
namespace Loader {
|
|
|
|
struct Program;
|
|
|
|
namespace GamePatch {
|
|
|
|
bool Apply(const std::filesystem::path& plan_path, Program* program);
|
|
|
|
} // namespace GamePatch
|
|
|
|
} // namespace Loader
|
|
|
|
#endif // KYTY_LOADER_GAME_PATCH_H_
|