mirror of
https://github.com/ApfelTeeSaft/UniversalSlashingSimulator.git
synced 2026-08-27 03:43:34 +00:00
11 lines
291 B
C++
11 lines
291 B
C++
#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();
|
|
}
|