mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 08:10:05 +00:00
11 lines
189 B
C++
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();
|
|
}
|