mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-03 05:01:35 +02:00
14 lines
230 B
QML
14 lines
230 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
|
|
|
|
Loader {
|
|
id: pageLoader
|
|
source: "content.qml"
|
|
}
|
|
}
|