summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/samegame/samegame1/Block.qml
blob: 11fd84494f1038213258b1505cf08123f7162831 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//![0]
import Qt 4.7

Item {
    id: block

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