qmlfrontend/main.qml
author unC0Rr
Wed, 15 May 2024 10:05:13 +0200
changeset 16042 2e529b1a9d5b
parent 16041 caba603f461f
permissions -rw-r--r--
Wonder if anyone is trying to build this game anymore

import QtQuick
import QtQuick.Controls
import QtQuick.Layouts

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

  SwipeView {
    id: swipeView
    anchors.fill: parent

    Page1 {
    }
  }
}