qmlFrontend/qml/qmlFrontend/LocalGame.qml
branchqmlfrontend
changeset 10422 4cf23d4c7624
child 10432 b0abef0ee78c
equal deleted inserted replaced
10420:02c573d19224 10422:4cf23d4c7624
       
     1 import QtQuick 2.0
       
     2 //import Hedgewars.Engine 1.0
       
     3 
       
     4 Rectangle {
       
     5     HWButton {
       
     6         id: btnQuickGame
       
     7         x: 8
       
     8         y: 66
       
     9         width: 150
       
    10         height: 150
       
    11     }
       
    12 
       
    13     HWButton {
       
    14         id: btnMultiplayer
       
    15         x: 192
       
    16         y: 66
       
    17         width: 150
       
    18         height: 150
       
    19 
       
    20         onClicked: pages.currentPage = "GameConfig"
       
    21     }
       
    22 }