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

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