qmlFrontend/qml/qmlFrontend/LocalGame.qml
author unc0rr
Thu, 18 Dec 2014 00:03:53 +0300
branchqmlfrontend
changeset 10616 20a2d5e6930a
parent 10432 b0abef0ee78c
child 11426 ab6a6d9ebfc0
permissions -rw-r--r--
Schemes list combobox with their names

import QtQuick 2.0
import Hedgewars.Engine 1.0

Rectangle {
    HWButton {
        id: btnQuickGame
        x: 8
        y: 66
        width: 150
        height: 150

        onClicked: HWEngine.runQuickGame()
    }

    HWButton {
        id: btnMultiplayer
        x: 192
        y: 66
        width: 150
        height: 150

        onClicked: pages.currentPage = "GameConfig"
    }
}