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
11 lines
153 B
C++
11 lines
153 B
C++
#pragma once
|
|
|
|
class ISectorRemapPatchCode
|
|
{
|
|
protected:
|
|
ISectorRemapPatchCode() { }
|
|
|
|
public:
|
|
virtual const void* GetRemapFunction() const = 0;
|
|
};
|