mirror of
https://github.com/libretro/Mu.git
synced 2026-04-30 18:20:25 +00:00
14 lines
266 B
C++
14 lines
266 B
C++
#include "mainwindow.h"
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[]){
|
|
QApplication a(argc, argv);
|
|
MainWindow w;
|
|
|
|
a.setOrganizationDomain("meepingsnesroms.github.com");
|
|
a.setApplicationName("LocalTester");
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|