1/* GCompris
2 *
3 * SPDX-FileCopyrightText: 2015 Bruno Coudoin <bruno.coudoin@gcompris.net>
4 *
5 * Authors:
6 *   Bruno Coudoin <bruno.coudoin@gcompris.net> (GTK+ version)
7 *   Pulkit Gupta <pulkitgenius@gmail.com> (Qt Quick port)
8 *
9 *   SPDX-License-Identifier: GPL-3.0-or-later
10 */
11import QtQuick 2.9
12
13QtObject {
14   property string instruction: qsTr("Sydney Opera House, Australia")
15   property var levels: [
16      {
17         "pixmapfile" : "image/OperaSidney_background.jpg",
18         "type" : "SHAPE_BACKGROUND_IMAGE"
19      },
20      {
21         "pixmapfile" : "image/OperaSidney_0.png",
22         "x" : "0.243",
23         "y" : "0.543",
24         "dropAreaSize" : "8"
25      },
26      {
27         "pixmapfile" : "image/OperaSidney_1.png",
28         "x" : "0.399",
29         "y" : "0.596",
30         "dropAreaSize" : "8"
31      },
32      {
33         "pixmapfile" : "image/OperaSidney_2.png",
34         "x" : "0.471",
35         "y" : "0.375",
36         "dropAreaSize" : "8"
37      },
38      {
39         "pixmapfile" : "image/OperaSidney_3.png",
40         "x" : "0.579",
41         "y" : "0.58",
42         "dropAreaSize" : "8"
43      }
44   ]
45}
46