mirror of https://github.com/AxioDL/metaforce.git
Add missing source file
This commit is contained in:
parent
479a44910b
commit
15ccb5e928
|
@ -0,0 +1,10 @@
|
|||
#include <QGuiApplication>
|
||||
#include "MainWindow.hpp"
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
QGuiApplication a(argc, argv);
|
||||
MainWindow w;
|
||||
w.show();
|
||||
return a.exec();
|
||||
}
|
Loading…
Reference in New Issue