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

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_