Push TODO

This commit is contained in:
TimmieDevelops
2026-02-01 15:02:46 -06:00
parent 3dc8d20b60
commit b59ccfcf28
7 changed files with 40 additions and 19 deletions
+10
View File
@@ -0,0 +1,10 @@
#include "PatternScanner.h"
uintptr_t PatternScanner::FindGetEngineVersion()
{
auto Results = Memcury::Scanner::FindPattern("40 53 48 83 EC ?? 48 8B D9 E8 ?? ?? ?? ?? 48 8B C8 41 B8"); // Chapter 1 - Chapter 2
if (!Results.IsValid())
return -1;
return Results.Get();
}