blob: b94ba98d2efec54e67cff2d3ef69c0886b4f64c2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#pragma once
#include "../Include.hpp"
namespace Utilities
{
uintptr_t FindPattern(const char* module, const char* sig);
uintptr_t Dereference(uintptr_t address, unsigned int offset);
void DumpNetVars();
}
|