aboutsummaryrefslogtreecommitdiff
path: root/mapman/src/main.cpp
diff options
context:
space:
mode:
authorGravatar Chris Xiong <chirs241097@gmail.com> 2023-09-09 20:09:50 -0400
committerGravatar Chris Xiong <chirs241097@gmail.com> 2023-09-09 20:09:50 -0400
commit93cf929f29dea490ed60e5300cacdd99886c988e (patch)
tree0f8669c56e22a287047ee20846b92f1580d7364f /mapman/src/main.cpp
parent40432e083b11271cf3148b9c38156cf759436699 (diff)
downloadmeteor-trashy-addon-93cf929f29dea490ed60e5300cacdd99886c988e.tar.xz
Add the standalone portion of mapman.
Diffstat (limited to 'mapman/src/main.cpp')
-rw-r--r--mapman/src/main.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/mapman/src/main.cpp b/mapman/src/main.cpp
new file mode 100644
index 0000000..b30b0f2
--- /dev/null
+++ b/mapman/src/main.cpp
@@ -0,0 +1,13 @@
+#include "mainwindow.hpp"
+#include <QApplication>
+
+int main(int argc, char **argv)
+{
+ QApplication a(argc, argv);
+
+ mapman_main_window mw;
+ mw.show();
+
+ a.exec();
+ return 0;
+}