4
0
mirror of https://github.com/QuasarApp/Hanoi-Towers.git synced 2025-05-09 16:09:34 +00:00
2018-01-20 17:44:28 +03:00

19 lines
319 B
QML

import QtQuick 2.5
import QtQuick.Controls 1.4
ApplicationWindow {
visible: true
id: gameWindow
width: 640
height: 480
title: qsTr("Hanoi Towers")
Loader {
id: core
source: "game.qml"
anchors.fill: parent
onLoaded: {
item.start(-1)
}
}
}