mirror of
https://github.com/QuasarApp/Hanoi-Towers.git
synced 2025-05-13 01:49:34 +00:00
19 lines
319 B
QML
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)
|
||
|
}
|
||
|
}
|
||
|
}
|