about summary refs log tree commit diff stats
path: root/Source/Memory.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Memory.h')
-rw-r--r--Source/Memory.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/Source/Memory.h b/Source/Memory.h index d497123..82d1293 100644 --- a/Source/Memory.h +++ b/Source/Memory.h
@@ -1,11 +1,4 @@
1#pragma once 1#pragma once
2#include <functional>
3#include <map>
4#include <thread>
5#include <vector>
6#include <windows.h>
7#include <cassert>
8#include "MemoryException.h"
9 2
10#define GLOBALS 0x5B28C0 3#define GLOBALS 0x5B28C0
11// #define GLOBALS 0x62D0A0 4// #define GLOBALS 0x62D0A0
@@ -16,6 +9,8 @@ enum class ProcStatus {
16 NewGame 9 NewGame
17}; 10};
18 11
12using byte = unsigned char;
13
19// https://github.com/erayarslan/WriteProcessMemory-Example 14// https://github.com/erayarslan/WriteProcessMemory-Example
20// http://stackoverflow.com/q/32798185 15// http://stackoverflow.com/q/32798185
21// http://stackoverflow.com/q/36018838 16// http://stackoverflow.com/q/36018838