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