mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-08-02 20:55:36 +00:00
11 lines
179 B
C++
11 lines
179 B
C++
#include <QGuiApplication>
|
|
#include "MainWindow.hpp"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
QGuiApplication a(argc, argv);
|
|
MainWindow w;
|
|
w.show();
|
|
return a.exec();
|
|
}
|