mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 22:08:43 +02:00
22 lines
389 B
QML
22 lines
389 B
QML
import QtQuick 2.1
|
|
import QtQuick.Controls 1.0
|
|
import QtQuick.Layouts 1.0
|
|
import QtQuick.Dialogs 1.0
|
|
|
|
ApplicationWindow {
|
|
id: window
|
|
visible: true
|
|
|
|
Timer {
|
|
interval: 50; running: true; repeat: true
|
|
onTriggered: {
|
|
Controller.update();
|
|
}
|
|
}
|
|
|
|
|
|
Loader {
|
|
id: pageLoader
|
|
source: ResourcePath + "TestControllers.qml"
|
|
}
|
|
}
|