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

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