summaryrefslogtreecommitdiffstats
path: root/demos/declarative/minehunt/test.qml
diff options
context:
space:
mode:
Diffstat (limited to 'demos/declarative/minehunt/test.qml')
-rw-r--r--demos/declarative/minehunt/test.qml13
1 files changed, 13 insertions, 0 deletions
diff --git a/demos/declarative/minehunt/test.qml b/demos/declarative/minehunt/test.qml
new file mode 100644
index 0000000..11ed182
--- /dev/null
+++ b/demos/declarative/minehunt/test.qml
@@ -0,0 +1,13 @@
+import Qt 4.6
+
+ Image {
+ source: "pics/front.png"
+ width: 40
+ height: 40
+ Image {
+ anchors.horizontalCenter: parent.horizontalCenter
+ anchors.verticalCenter: parent.verticalCenter
+ source: "pics/flag.png"
+ opacity: 1
+ }
+ }