forked from Sepanta/console-emulator
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
476 B
25 lines
476 B
import QtQuick 2.0
|
|
|
|
import "qrc:/emulator/elements"
|
|
import "qrc:/const"
|
|
|
|
Item {
|
|
// width: 820
|
|
// height: 80
|
|
width: childrenRect.width
|
|
height: childrenRect.height
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
// x: 550
|
|
y: 50
|
|
|
|
Row {
|
|
spacing: 64
|
|
|
|
JoystickButtonBind { name: "joystick1" }
|
|
JoystickButtonBind { name: "joystick2" }
|
|
JoystickButtonBind { name: "joystick3" }
|
|
JoystickButtonBind { name: "joystick4" }
|
|
JoystickButtonBind { name: "joystick5" }
|
|
}
|
|
}
|
|
|