view 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 source

#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();
}