summaryrefslogtreecommitdiffstats
path: root/examples/demos/samegame/content/levels/level7.qml
blob: 7dbe489bacc6d551858e5e0e21c2d8f736757e82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick

TemplateBase{
    goalText: "8 of 10<br><br>Clear the grid."
    startingGrid: [ 2 , 4 , 3 , 2 , 3 , 2 , 3 , 3 , 4 , 3 ,
                    2 , 2 , 3 , 3 , 1 , 4 , 3 , 3 , 3 , 2 ,
                    1 , 4 , 2 , 3 , 4 , 3 , 3 , 1 , 1 , 1 ,
                    2 , 1 , 2 , 4 , 4 , 2 , 2 , 3 , 2 , 1 ,
                    3 , 4 , 4 , 1 , 3 , 2 , 4 , 2 , 1 , 1 ,
                    2 , 2 , 3 , 1 , 2 , 4 , 1 , 2 , 1 , 2 ,
                    1 , 2 , 3 , 2 , 4 , 4 , 3 , 1 , 1 , 2 ,
                    4 , 4 , 2 , 1 , 2 , 4 , 2 , 2 , 4 , 3 ,
                    4 , 2 , 4 , 1 , 3 , 4 , 1 , 4 , 2 , 4 ,
                    4 , 3 , 4 , 1 , 4 , 3 , 1 , 3 , 1 , 1 ,
                    3 , 3 , 2 , 3 , 2 , 4 , 1 , 2 , 4 , 4 ,
                    3 , 4 , 2 , 2 , 4 , 3 , 4 , 1 , 3 , 2 ,
                    4 , 3 , 3 , 4 , 2 , 4 , 1 , 2 , 3 , 2 ]
}