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
14 lines
343 B
C++
14 lines
343 B
C++
#pragma once
|
|
|
|
/// @brief Interface for sector remapping patch code.
|
|
class ISectorRemapPatchCode
|
|
{
|
|
protected:
|
|
ISectorRemapPatchCode() { }
|
|
|
|
public:
|
|
/// @brief Gets a pointer to the sector remap function in the patch code.
|
|
/// @return The pointer to the sector remap function.
|
|
virtual const void* GetRemapFunction() const = 0;
|
|
};
|