From bff40e55c9c55fbc8439bb225d1937b2d805e629 Mon Sep 17 00:00:00 2001 From: jbzdarkid Date: Mon, 18 Nov 2019 09:16:16 -0800 Subject: Cleanup & progress on tutorial --- Source/Randomizer2.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Source/Randomizer2.h') diff --git a/Source/Randomizer2.h b/Source/Randomizer2.h index 359e357..6e79694 100644 --- a/Source/Randomizer2.h +++ b/Source/Randomizer2.h @@ -1,16 +1,20 @@ #pragma once #include +#include "PuzzleSerializer.h" class Memory; class Randomizer2 { public: Randomizer2(const std::shared_ptr& memory); void Randomize(); + void RandomizeTutorial(); void RandomizeKeep(); private: + Puzzle GetUniqueSolution(Puzzle& p); void SetGate(int panel, int X, int Y); void SetPos(int panel, float x, float y, float z); std::shared_ptr _memory; + PuzzleSerializer _serializer; }; -- cgit 1.4.1