mirror of
https://github.com/libretro/Mu.git
synced 2026-05-07 04:43:53 +00:00
15 lines
258 B
C++
15 lines
258 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("Mu");
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|