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

import QtQuick

TemplateBase{
    moveTarget: 3
    goalText: "1 of 10<br><br>Clear in three moves..."
    startingGrid: [ 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 ,
                    0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 ,
                    0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 ,
                    0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 ,
                    0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 ,
                    0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 ,
                    0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 1 , 1 ,
                    0 , 0 , 0 , 0 , 0 , 1 , 1 , 2 , 1 , 1 ,
                    0 , 0 , 0 , 1 , 1 , 3 , 3 , 3 , 3 , 3 ,
                    0 , 1 , 1 , 3 , 3 , 3 , 1 , 3 , 1 , 1 ,
                    1 , 2 , 3 , 3 , 1 , 1 , 3 , 3 , 3 , 3 ,
                    1 , 3 , 3 , 2 , 3 , 3 , 3 , 3 , 1 , 1 ,
                    1 , 2 , 2 , 2 , 2 , 2 , 2 , 2 , 2 , 2 ]
}