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

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