Snake/front-end/main.qml

20 lines
348 B
QML
Raw Normal View History

2018-09-09 15:05:52 +03:00
import QtQuick 2.9
import QtQuick.Window 2.2
2018-11-12 20:00:37 +03:00
import Controller 1.0
2018-09-09 15:05:52 +03:00
Window {
visible: true
2018-10-08 21:10:07 +03:00
width: 1140
height: 540
2018-09-27 00:10:42 +03:00
title: qsTr("SnakeOnTheRoad")
2018-11-12 20:00:37 +03:00
readonly property int pointCount: 100;
property real point: (width < height) ? width/pointCount : height/pointCount;
onPointChanged: {
console.log(point);
}
2018-09-09 15:05:52 +03:00
}