about summary refs log tree commit diff stats
path: root/WitnessRandomizer/WitnessRandomizer.h
diff options
context:
space:
mode:
Diffstat (limited to 'WitnessRandomizer/WitnessRandomizer.h')
-rw-r--r--WitnessRandomizer/WitnessRandomizer.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/WitnessRandomizer/WitnessRandomizer.h b/WitnessRandomizer/WitnessRandomizer.h index 26affa3..182c88e 100644 --- a/WitnessRandomizer/WitnessRandomizer.h +++ b/WitnessRandomizer/WitnessRandomizer.h
@@ -2,18 +2,18 @@
2 2
3int SWAP_TARGETS = 0x1; 3int SWAP_TARGETS = 0x1;
4int SWAP_PATHWAYS = 0x2; 4int SWAP_PATHWAYS = 0x2;
5int SWAP_STYLE = 0x40; 5int SWAP_STYLE = 0x4;
6int SWAP_COLORS = 0x4; 6int SWAP_COLORS = 0x8;
7int SWAP_TRACED = 0x80; 7int SWAP_TRACED = 0x10;
8 8
9 9
10int SWAP_SIZE = 0x8; 10int SWAP_SIZE = 0x20;
11 11
12 12
13class WitnessRandomizer { 13class WitnessRandomizer {
14public: 14public:
15 15
16 WitnessRandomizer() = default; 16 WitnessRandomizer();
17 17
18 void Randomize(std::vector<int> panels, int flags); 18 void Randomize(std::vector<int> panels, int flags);
19 void SwapPanels(int panel1, int panel2, int flags); 19 void SwapPanels(int panel1, int panel2, int flags);
@@ -21,5 +21,5 @@ public:
21private: 21private:
22 void SwapPanelData(int panel1, int panel2, int finalOffset, int dataSize); 22 void SwapPanelData(int panel1, int panel2, int finalOffset, int dataSize);
23 23
24 Memory _memory = Memory("witness64_d3d11.exe"); 24 Memory _memory;
25}; \ No newline at end of file 25}; \ No newline at end of file