checkpoint

This commit is contained in:
2025-12-21 11:47:24 -06:00
parent 52ff5cff2b
commit dcd9886df2
11 changed files with 245 additions and 83 deletions

15
qml/Main.qml Normal file
View File

@@ -0,0 +1,15 @@
import QtQuick
import QtQuick.Window
import MyApp 1.0
Window {
width: 800
height: 600
visible: true
title: "metabolus"
color: "black"
MainScreen {
anchors.fill: parent
}
}