Warning, /education/gcompris/src/activities/ordering_numbers/resource/2/Data.qml is written in an unsupported language. File is not indexed.
0001 /* GCompris - Data.qml
0002 *
0003 * SPDX-FileCopyrightText: 2021 Harsh Kumar <hadron43@yahoo.com>
0004 *
0005 * Authors:
0006 * Harsh Kumar <hadron43@yahoo.com>
0007 *
0008 * SPDX-License-Identifier: GPL-3.0-or-later
0009 */
0010 import GCompris 1.0
0011
0012 Data {
0013 objective: qsTr("Descending order, 5 defined numbers between 1 and 5.")
0014 difficulty: 4
0015 data: [
0016 {
0017 // To override the default hardcoded instruction, define instruction string
0018 // instruction: "overridden instruction"
0019 mode: "descending", // Either ascending or descending
0020 values: [1, 2, 3, 4, 5]
0021 }
0022 ]
0023 }