diff options
| author | german77 <juangerman-13@hotmail.com> | 2024-02-05 14:19:26 -0600 |
|---|---|---|
| committer | german77 <juangerman-13@hotmail.com> | 2024-02-05 14:38:26 -0600 |
| commit | c52d7cc694047eea48714e8046bb150592d67e56 (patch) | |
| tree | c0ba889dba8bf0b3ba73098d1c4a31c6857a8902 /src/core/memory/dmnt_cheat_vm.h | |
| parent | a2f23746c26e0882ff8ffadc814a09859efe54e2 (diff) | |
dmnt: cheat: Add pause and resume support
Diffstat (limited to 'src/core/memory/dmnt_cheat_vm.h')
| -rw-r--r-- | src/core/memory/dmnt_cheat_vm.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/memory/dmnt_cheat_vm.h b/src/core/memory/dmnt_cheat_vm.h index fed6a24ad..1c1ed1259 100644 --- a/src/core/memory/dmnt_cheat_vm.h +++ b/src/core/memory/dmnt_cheat_vm.h @@ -271,6 +271,9 @@ public: virtual u64 HidKeysDown() = 0; + virtual void PauseProcess() = 0; + virtual void ResumeProcess() = 0; + virtual void DebugLog(u8 id, u64 value) = 0; virtual void CommandLog(std::string_view data) = 0; }; |
