supercell-wx/scwx-qt/source/scwx/qt/main.cpp
2021-06-22 20:54:46 -05:00

11 lines
189 B
C++

#include "main_window.hpp"
#include <QApplication>
int main(int argc, char* argv[])
{
QApplication a(argc, argv);
scwx::qt::MainWindow w;
w.show();
return a.exec();
}