mirror of
https://github.com/lubosz/overte.git
synced 2025-04-25 04:03:28 +02:00
18 lines
229 B
QML
18 lines
229 B
QML
import QtQuick 2.1
|
|
|
|
import ".."
|
|
|
|
Item {
|
|
id: root
|
|
property int size: 64
|
|
width: size
|
|
height: size
|
|
property var device
|
|
|
|
AnalogStick {
|
|
size: size
|
|
controlIds: [ device.LX, device.LY ]
|
|
}
|
|
}
|
|
|
|
|