qmlfrontend/main.qml
author unC0Rr
Mon, 17 Feb 2025 16:37:59 +0100
branchqmlrenderer
changeset 16089 02304ad06381
parent 16012 caba603f461f
permissions -rw-r--r--
Add TiledImageItem and a scene that represents hedgewars map

import QtQuick
import QtQuick.Controls
import QtQuick.Layouts

ApplicationWindow {
  visible: true
  width: 640
  height: 480
  title: qsTr("Hello World")

  GameScene {
    anchors.fill: parent
  }
}