add gobang entry

This commit is contained in:
王劲鹏
2021-03-17 19:38:22 +08:00
committed by osborn
parent 0c151c435f
commit b8aded79b7
4 changed files with 10 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ ApplicationWindow {
ListView {
width: parent.width
model: 2
model: 3
delegate: Rectangle {
Column {
anchors.centerIn: parent
@@ -20,8 +20,10 @@ ApplicationWindow {
text: {
switch (index) {
case 0:
return "SimpleDemo.es5.js"
return "Gobang.es5.js"
case 1:
return "SimpleDemo.es5.js"
case 2:
return "Snake.es5.js"
}
}