vanilla/app/main.cpp

14 lines
201 B
C++
Raw Normal View History

2024-05-09 14:02:08 -04:00
#include <QApplication>
#include <QMainWindow>
#include "mainwindow.h"
2024-05-09 14:02:08 -04:00
int main(int argc, char **argv)
{
QApplication app(argc, argv);
MainWindow mw;
2024-05-09 14:02:08 -04:00
mw.show();
return app.exec();
}