mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
60 lines
1.9 KiB
QML
60 lines
1.9 KiB
QML
import QtQuick 2.9
|
|
|
|
ListModel {
|
|
id: model
|
|
|
|
property var urls: [
|
|
'../../images/samples/hifi-mp-e76946cc-c272-4adf-9bb6-02cde0a4b57d.png',
|
|
'../../images/samples/hifi-mp-e76946cc-c272-4adf-9bb6-02cde0a4b57d-1.png',
|
|
'../../images/samples/hifi-mp-e76946cc-c272-4adf-9bb6-02cde0a4b57d-2.png',
|
|
'../../images/samples/hifi-mp-e76946cc-c272-4adf-9bb6-02cde0a4b57d-3.png',
|
|
'../../images/samples/hifi-mp-e76946cc-c272-4adf-9bb6-02cde0a4b57d-4.png',
|
|
'../../images/samples/hifi-mp-e76946cc-c272-4adf-9bb6-02cde0a4b57d-5.png',
|
|
'../../images/samples/hifi-mp-e76946cc-c272-4adf-9bb6-02cde0a4b57d-5.png',
|
|
]
|
|
|
|
/*
|
|
ListElement {
|
|
url: '../../images/samples/hifi-mp-e76946cc-c272-4adf-9bb6-02cde0a4b57d.png'
|
|
name: 'Woody'
|
|
wearables: ''
|
|
favorite: false
|
|
}
|
|
ListElement {
|
|
url: '../../images/samples/hifi-mp-e76946cc-c272-4adf-9bb6-02cde0a4b57d-1.png'
|
|
name: 'Damien'
|
|
wearables: ''
|
|
favorite: false
|
|
}
|
|
ListElement {
|
|
url: '../../images/samples/hifi-mp-e76946cc-c272-4adf-9bb6-02cde0a4b57d-2.png'
|
|
name: 'Lexi'
|
|
wearables: ''
|
|
favorite: false
|
|
}
|
|
ListElement {
|
|
url: '../../images/samples/hifi-mp-e76946cc-c272-4adf-9bb6-02cde0a4b57d-3.png'
|
|
name: 'Judie'
|
|
wearables: ''
|
|
favorite: true
|
|
}
|
|
ListElement {
|
|
url: '../../images/samples/hifi-mp-e76946cc-c272-4adf-9bb6-02cde0a4b57d-4.png'
|
|
name: 'Alex'
|
|
wearables: ''
|
|
favorite: true
|
|
}
|
|
ListElement {
|
|
url: '../../images/samples/hifi-mp-e76946cc-c272-4adf-9bb6-02cde0a4b57d-5.png'
|
|
name: 'Matthew'
|
|
wearables: ''
|
|
favorite: true
|
|
}
|
|
ListElement {
|
|
url: '../../images/samples/hifi-mp-e76946cc-c272-4adf-9bb6-02cde0a4b57d-5.png'
|
|
name: 'Ogre'
|
|
wearables: ''
|
|
favorite: true
|
|
}
|
|
*/
|
|
}
|