mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 11:58:34 +00:00
ff8849671a
* Enable write to memory and improve logging * Update tamper machine opcodes and improve reporting * Add Else support * Add missing private statement
13 lines
281 B
C#
13 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);
|
|
}
|
|
}
|