aboutsummaryrefslogtreecommitdiffstats
path: root/src/shared/Globals.qml
blob: 6531a1e7eca944d92632975d7eabbf8e4ad0edc9 (plain)
1
2
3
4
5
6
7
8
9
10
pragma Singleton
import QtQuick 2.0

QtObject {
    readonly property string stringProp: "stringValue"
    readonly property int intProp: 10
    readonly property real realProp: 4.5
    readonly property color colorProp: "green"
    readonly property bool boolProp: true
}