summaryrefslogtreecommitdiff
path: root/examples/declarative/tutorials/samegame/samegame1/Block.qml
blob: f133b1741bbd6640dc90069650c5570f0a41792c (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: "../shared/pics/redStone.png";
        anchors.fill: parent
    }
}
//![0]