1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-11-07 03:22:33 +01:00
ScreenPlay/ScreenPlayWorkshop/qml/TestMain.qml

19 lines
350 B
QML
Raw Normal View History

import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
import QtQuick.Controls.Material
import ScreenPlayWorkshop
Window {
id: root
width: 1366
height: 768
visible: true
title: qsTr("ScreenPlayWorkshop")
Loader {
anchors.fill: parent
source:"qrc:/qml/ScreenPlayWorkshop/qml/SteamWorkshop.qml"
}
}