summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/samegame/samegame1/Block.qml
blob: a23654b2a4cf1638d16f319641056d37398a349f (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]