summaryrefslogtreecommitdiffstats
path: root/basicsuite/Game/main.qml
blob: 13183d7ee7a004d2bebfdab648ac9441df207f25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 2.0

Rectangle {
    width: 200
    height: 200
    color: "black"

    Text {
        anchors.fill: parent
        color: "white"
        horizontalAlignment: Text.AlignHCenter
        verticalAlignment: Text.AlignVCenter
        text: "More to come..."
        font.pixelSize: Math.min(width, height) * 0.03
    }
}