Files
pico-loader/arm9/source/patches/SectorRemapPatchCode.h
2025-11-23 17:14:17 +01:00

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;
};