| 14 | }; |
| 15 | |
| 16 | struct PuzzleConfig { |
| 17 | QString name; |
| 18 | QString description; |
| 19 | bool redFirst; |
| 20 | bool playerIsRed; |
| 21 | QVector<PuzzlePiece> pieces; // 只列出存活棋子,其余默认死亡 |
| 22 | }; |
| 23 | |
| 24 | QVector<PuzzleConfig> getBuiltinPuzzles(); |
| 25 |
nothing calls this directly
no outgoing calls
no test coverage detected