20 lines
354 B
QML
20 lines
354 B
QML
import QtQuick 2.4
|
|
import QtQuick.Window 2.0
|
|
|
|
Window {
|
|
title: "Background maps"
|
|
// A background map is 32 x 32 tiles.
|
|
// Each tile is 8 x 8 pixels.
|
|
width: 256
|
|
height: 256
|
|
maximumWidth: width
|
|
minimumWidth: width
|
|
maximumHeight: height
|
|
minimumHeight: height
|
|
|
|
BackgroundMapForm {
|
|
anchors.fill: parent
|
|
}
|
|
|
|
}
|