feat: Initial commit of project structure, IDA database, the Tools, readme and license

This commit is contained in:
ALittlePatate
2021-12-18 13:02:24 +01:00
commit 0968b31444
40 changed files with 1232 additions and 0 deletions

9
Ezfrags/Get.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include "MemManager.h"
#include "Signatures.h"
#include "Get.h"
namespace Get {
INT32 LocalPlayer() {
return Mem::RPM<INT32>(Mem::client + Signatures::dwLocalPlayer);
}
}