ff8849671a
* Enable write to memory and improve logging * Update tamper machine opcodes and improve reporting * Add Else support * Add missing private statement
12 lines
281 B
C#
12 lines
281 B
C#
using Ryujinx.HLE.HOS.Services.Hid;
|
|
|
|
namespace Ryujinx.HLE.HOS.Tamper
|
|
{
|
|
interface ITamperProgram
|
|
{
|
|
string Name { get; }
|
|
bool TampersCodeMemory { get; set; }
|
|
ITamperedProcess Process { get; }
|
|
void Execute(ControllerKeys pressedKeys);
|
|
}
|
|
}
|