qmlFrontend/qml/qmlFrontend/LocalGame.qml
author unc0rr
Fri, 26 Sep 2014 00:56:36 +0400
branchqmlfrontend
changeset 10422 4cf23d4c7624
child 10432 b0abef0ee78c
permissions -rw-r--r--
- Pages - Animations on buttons hovering

import QtQuick 2.0
//import Hedgewars.Engine 1.0

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

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

        onClicked: pages.currentPage = "GameConfig"
    }
}