| 4 | #include "PuzzleGame.h" |
| 5 | |
| 6 | PuzzleGame::PuzzleGame(const PuzzleConfig& config, AIDifficulty diff) |
| 7 | : MachineGame(diff), m_puzzle(config) |
| 8 | { |
| 9 | loadPuzzle(config); |
| 10 | } |
| 11 | |
| 12 | void PuzzleGame::loadPuzzle(const PuzzleConfig& config) |
| 13 | { |
nothing calls this directly
no outgoing calls
no test coverage detected