qmlFrontend/qml/qmlFrontend/LocalGame.qml
author unc0rr
Mon, 03 Nov 2014 00:01:02 +0300
branchqmlfrontend
changeset 10452 03519fd9f98d
parent 10432 b0abef0ee78c
child 11426 ab6a6d9ebfc0
permissions -rw-r--r--
Show team color in teams list widget, also allow to change it on mouse click

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