mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-05-09 07:59:48 +00:00
38 lines
591 B
QML
38 lines
591 B
QML
import QtQuick 2.15
|
|
import QtQuick.Window 2.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
import NotifyModule 1.0
|
|
|
|
ApplicationWindow {
|
|
id: mainWindow;
|
|
visible: true;
|
|
width: 640;
|
|
height: 480;
|
|
title: qsTr("SnakeOnTheRoad");
|
|
|
|
// Component.onCompleted: {
|
|
// mainWindow.showFullScreen();
|
|
// }
|
|
|
|
|
|
Metrix {id: metrix}
|
|
|
|
Scene {
|
|
id: scane;
|
|
model: engine;
|
|
anchors.fill: parent;
|
|
}
|
|
|
|
MainMenu {
|
|
|
|
model: (mainmenu)? mainmenu: null;
|
|
anchors.fill: parent;
|
|
|
|
}
|
|
|
|
NotificationServiceView {
|
|
anchors.fill: parent;
|
|
}
|
|
}
|