2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
//![0]
|
2011-11-14 04:38:18 +00:00
|
|
|
import QtQuick 2.0
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
Item {
|
|
|
|
id: block
|
|
|
|
|
|
|
|
property int type: 0
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: img
|
|
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
source: {
|
|
|
|
if (type == 0)
|
2021-08-30 13:46:39 +00:00
|
|
|
return "pics/redStone.png";
|
2014-01-15 21:01:15 +00:00
|
|
|
else if (type == 1)
|
2021-08-30 13:46:39 +00:00
|
|
|
return "pics/blueStone.png";
|
2011-04-27 10:05:43 +00:00
|
|
|
else
|
2021-08-30 13:46:39 +00:00
|
|
|
return "pics/greenStone.png";
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//![0]
|