summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/samegame/samegame2/Block.qml
blob: 4e71e60ffdc30f0d34733f0332ad280313faedca (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";
    }
}