mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-10 18:38:59 +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"
|
|
}
|
|
}
|