diff options
author | rtk0c <[email protected]> | 2022-06-30 21:00:37 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-06-30 21:00:37 -0700 |
commit | 26a894a1ebdc943cb04cb7455345566b65768d9c (patch) | |
tree | ce0270885fcd99ccedc23e7d74c1aeb7c7968324 /qml/MainWindow.qml | |
parent | d77b11b20dcd9e6c5adbc541f29bf5cdde9db1d0 (diff) |
Rearrange project, add .clang-format and .clang-tidy
Diffstat (limited to 'qml/MainWindow.qml')
-rw-r--r-- | qml/MainWindow.qml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/qml/MainWindow.qml b/qml/MainWindow.qml new file mode 100644 index 0000000..41424f8 --- /dev/null +++ b/qml/MainWindow.qml @@ -0,0 +1,8 @@ +import QtQuick + +Window { + width: 640 + height: 480 + visible: true + title: qsTr("Hello World") +} |