Warning, /education/gcompris/src/activities/memory-math-add-minus-tux/resource/10/Data.qml is written in an unsupported language. File is not indexed.

0001 /* GCompris - Data.qml
0002  *
0003  * SPDX-FileCopyrightText: 2020 Deepak Kumar <deepakdk2431@gmail.com>
0004  *
0005  * Authors:
0006  *   Deepak Kumar <deepakdk2431@gmail.com>
0007  *
0008  *   SPDX-License-Identifier: GPL-3.0-or-later
0009  */
0010 
0011 import GCompris 1.0
0012 import "qrc:/gcompris/src/activities/memory/math_util.js" as Memory
0013 
0014 Data {
0015     objective: qsTr("Table of 10.")
0016     difficulty: 5
0017 
0018     data: [
0019         { // Level 1
0020             columns: 5,
0021             rows: 2,
0022             texts: Memory.getAddMinusTable(10)
0023         }
0024     ]
0025 }