Warning, /education/gcompris/src/activities/planegame/Sequence.qml is written in an unsupported language. File is not indexed.

0001 /* GCompris - Sequence.qml
0002  *
0003  * SPDX-FileCopyrightText: 2014 Bruno Coudoin <bruno.coudoin@gcompris.net>
0004  *
0005  * Authors:
0006  *   Bruno Coudoin <bruno.coudoin@gcompris.net>
0007  *
0008  *   SPDX-License-Identifier: GPL-3.0-or-later
0009  */
0010 import QtQuick 2.12
0011 
0012 Planegame {
0013 
0014     dataset: [
0015         {
0016             data: "0 1 2 3 4 5 6 7 8 9 10".split(" "),
0017             showNext: true
0018         },
0019         {
0020             data: "10 11 12 13 14 15 16 17 18 19 20".split(" "),
0021             showNext: true
0022         },
0023         {
0024             data: "0 1 2 3 4 5 6 7 8 9 10".split(" "),
0025             showNext: false
0026         },
0027         {
0028             data: "10 11 12 13 14 15 16 17 18 19 20".split(" "),
0029             showNext: false
0030         }
0031     ]
0032 }