qmlfrontend/main.qml
author unC0Rr
Mon, 16 Sep 2024 16:57:11 +0200
branchtransitional_engine
changeset 16034 09beeec033ba
parent 16012 caba603f461f
permissions -rw-r--r--
Sanitize maze mapgen code a bit

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 {
    }
  }
}