mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-29 17:02:57 +02:00
30 lines
526 B
QML
30 lines
526 B
QML
//
|
|
// turntable.qml
|
|
// developer/utilities/render
|
|
//
|
|
// Created by Sam Gateau on 6/2/2016
|
|
// Copyright 2016 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or https://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
import QtQuick 2.5
|
|
import QtQuick.Controls 1.4
|
|
|
|
Item {
|
|
id: statsUI
|
|
anchors.fill:parent
|
|
|
|
Column {
|
|
id: stats
|
|
spacing: 8
|
|
anchors.fill:parent
|
|
|
|
Label {
|
|
text: "Turntable"
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|