aboutsummaryrefslogtreecommitdiff
path: root/src/core/memory/dmnt_cheat_vm.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-02-09 11:47:34 -0500
committerGitHub <noreply@github.com>2024-02-09 11:47:34 -0500
commita133eadf0679ba55615d13cf2dfc3df5b1ea6f4b (patch)
tree661c419d5705c3f7f023fe4a5310a9e6d112047b /src/core/memory/dmnt_cheat_vm.h
parent89dd0fa932ce8ef114d4bddb47587195f9360aa2 (diff)
parentc52d7cc694047eea48714e8046bb150592d67e56 (diff)
Merge pull request #12927 from german77/cheat-pause
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.h3
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;
};