12 lines
179 B
QML
12 lines
179 B
QML
import QtQuick 2.0
|
|
|
|
Rectangle {
|
|
width: 360*windowWidth
|
|
height: 160*windowHeight
|
|
color: "#000000"
|
|
|
|
property int windowHeight: 1
|
|
property int windowWidth: 1
|
|
|
|
|
|
}
|