mirror of
https://github.com/decaf-emu/decaf-emu.git
synced 2025-04-02 10:42:13 -04:00
Basic skeleton app now, let's see if we can iterate on this until we have something useful?
10 lines
185 B
C++
10 lines
185 B
C++
#include "mainwindow.h"
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QApplication app { argc, argv };
|
|
MainWindow mainWin;
|
|
mainWin.show();
|
|
return app.exec();
|
|
}
|