diff options
Diffstat (limited to 'WitnessRandomizer/WitnessRandomizer.h')
-rw-r--r-- | WitnessRandomizer/WitnessRandomizer.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/WitnessRandomizer/WitnessRandomizer.h b/WitnessRandomizer/WitnessRandomizer.h index 0c73b89..bb9db44 100644 --- a/WitnessRandomizer/WitnessRandomizer.h +++ b/WitnessRandomizer/WitnessRandomizer.h | |||
@@ -1,7 +1,7 @@ | |||
1 | #pragma once | 1 | #pragma once |
2 | 2 | ||
3 | //#define GLOBALS 0x5B28C0 | 3 | #define GLOBALS 0x5B28C0 |
4 | #define GLOBALS 0x62A080 | 4 | // #define GLOBALS 0x62A080 |
5 | 5 | ||
6 | int SWAP_NONE = 0x0; | 6 | int SWAP_NONE = 0x0; |
7 | int SWAP_TARGETS = 0x1; | 7 | int SWAP_TARGETS = 0x1; |
@@ -12,8 +12,8 @@ class WitnessRandomizer { | |||
12 | public: | 12 | public: |
13 | WitnessRandomizer(); | 13 | WitnessRandomizer(); |
14 | 14 | ||
15 | void Randomize(const std::vector<int>& panels, int flags); | 15 | void Randomize(std::vector<int>& panels, int flags); |
16 | void RandomizeRange(std::vector<int> panels, int flags, size_t startIndex, size_t endIndex); | 16 | void RandomizeRange(std::vector<int> &panels, int flags, size_t startIndex, size_t endIndex); |
17 | void SwapPanels(int panel1, int panel2, int flags); | 17 | void SwapPanels(int panel1, int panel2, int flags); |
18 | void ReassignTargets(const std::vector<int>& panels, const std::vector<int>& order); | 18 | void ReassignTargets(const std::vector<int>& panels, const std::vector<int>& order); |
19 | 19 | ||