qmlFrontend/qml/qmlFrontend/main.qml
branchqmlfrontend
changeset 10402 3313336c1ee0
child 10420 02c573d19224
--- /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
+    }
+}