diff options
Diffstat (limited to 'Source/Randomizer2.h')
-rw-r--r-- | Source/Randomizer2.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Source/Randomizer2.h b/Source/Randomizer2.h deleted file mode 100644 index a2b5ebd..0000000 --- a/Source/Randomizer2.h +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | #pragma once | ||
2 | #include "PuzzleSerializer.h" | ||
3 | |||
4 | class Randomizer2 { | ||
5 | public: | ||
6 | Randomizer2(const PuzzleSerializer& serializer); | ||
7 | void Randomize(); | ||
8 | void RandomizeTutorial(); | ||
9 | void RandomizeGlassFactory(); | ||
10 | void RandomizeSymmetryIsland(); | ||
11 | void RandomizeKeep(); | ||
12 | |||
13 | private: | ||
14 | Puzzle GetUniqueSolution(Puzzle& p); | ||
15 | void SetGate(int panel, int X, int Y); | ||
16 | void SetPos(int panel, float x, float y, float z); | ||
17 | |||
18 | PuzzleSerializer _serializer; | ||
19 | }; | ||