qmlFrontend/qml/qmlFrontend/First.qml
author unc0rr
Thu, 26 Nov 2015 20:11:54 +0300
branchqmlfrontend
changeset 11432 97e3e62ea5f9
parent 10896 5a74923120d5
permissions -rw-r--r--
Update seed, theme and script from net in UI

import QtQuick 2.0

Rectangle {
    HWButton {
        id: btnLocalGame
        x: 8
        y: 80
        width: 166
        height: 166

        onClicked: pages.currentPage = "LocalGame"
    }

    HWButton {
        id: btnNetwork
        x: 192
        y: 80
        width: 166
        height: 166

        onClicked: pages.currentPage = "Connect"
    }

    HWButton {
        id: btnAbout
        x: 100
        y: 16
        width: 200
        height: 50
    }
}