diff -r 02c573d19224 -r 4cf23d4c7624 qmlFrontend/qml/qmlFrontend/First.qml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/qmlFrontend/qml/qmlFrontend/First.qml Fri Sep 26 00:56:36 2014 +0400 @@ -0,0 +1,29 @@ +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 + } + + HWButton { + id: btnAbout + x: 100 + y: 16 + width: 200 + height: 50 + } +}