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

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