mirror of
https://github.com/huderlem/porymap.git
synced 2026-03-22 10:04:53 -05:00
13 lines
210 B
C++
Executable File
13 lines
210 B
C++
Executable File
#include "mainwindow.h"
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
a.setStyle("fusion");
|
|
MainWindow w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|