diff src/main.cc @ 81:9b2b41f83a5e

boring: mass rename to cc because this is a very unix-y project, it makes more sense to use the 'cc' extension
author Paper <mrpapersonic@gmail.com>
date Mon, 23 Oct 2023 12:07:27 -0400
parents src/main.cpp@d0adc4aedfc8
children 582b2fca1561
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/main.cc	Mon Oct 23 12:07:27 2023 -0400
@@ -0,0 +1,20 @@
+#include "core/session.h"
+#include "gui/window.h"
+#include <QApplication>
+#include <QStyleFactory>
+
+Session session;
+
+int main(int argc, char** argv) {
+	QApplication app(argc, argv);
+
+	session.config.Load();
+
+	MainWindow window;
+
+	window.resize(941, 750);
+	window.setWindowTitle("Minori");
+	window.show();
+
+	return app.exec();
+}