You've already forked pico-loader
mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-01-09 16:28:35 -08:00
12 lines
273 B
C++
12 lines
273 B
C++
#pragma once
|
|
#include "PatchCode.h"
|
|
|
|
class SectorRemapPatchCode : public PatchCode
|
|
{
|
|
public:
|
|
SectorRemapPatchCode(const void* code, u32 size, PatchHeap& patchHeap)
|
|
: PatchCode(code, size, patchHeap) { }
|
|
|
|
virtual const void* GetRemapFunction() const = 0;
|
|
};
|