diff -r c31276023295 -r 3313336c1ee0 qmlFrontend/qml/qmlFrontend/main.qml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/qmlFrontend/qml/qmlFrontend/main.qml Fri Sep 12 00:51:14 2014 +0400 @@ -0,0 +1,27 @@ +import QtQuick 2.0 +import Hedgewars.Engine 1.0 + +Rectangle { + width: 400 + height: 400 + + HWButton { + id: hwbutton1 + x: 8 + y: 66 + width: 166 + height: 158 + + onClicked: { + HWEngine.run() + } + } + + HWButton { + id: hwbutton2 + x: 192 + y: 66 + width: 200 + height: 139 + } +}