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("Courtyard of the Museum of Louvre, and its pyramid")
15   property var levels: [
16      {
17         "pixmapfile" : "image/Louvre_2007_02_24_c_background.jpg",
18         "type" : "SHAPE_BACKGROUND_IMAGE"
19      },
20      {
21         "pixmapfile" : "image/Louvre_2007_02_24_c_0.png",
22         "x" : "0.9",
23         "y" : "0.495",
24         "dropAreaSize" : "8"
25      },
26      {
27         "pixmapfile" : "image/Louvre_2007_02_24_c_1.png",
28         "x" : "0.494",
29         "y" : "0.509",
30         "dropAreaSize" : "8"
31      },
32      {
33         "pixmapfile" : "image/Louvre_2007_02_24_c_2.png",
34         "x" : "0.164",
35         "y" : "0.437",
36         "dropAreaSize" : "8"
37      }
38   ]
39}
40