summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/samegame/samegame2/Block.qml
blob: 39da84edf242e5db6eafc1a7137a172be39e3d78 (plain)
1
2
3
4
5
6
7
8
9
10
11
import Qt 4.7

Item {
    id: block

    Image {
        id: img
        anchors.fill: parent
        source: "../shared/pics/redStone.png"
    }
}