mirror of
https://github.com/ioquake/launch.git
synced 2024-11-10 06:31:39 +00:00
12 lines
180 B
C++
12 lines
180 B
C++
|
#include <QtGui/QApplication>
|
||
|
#include "mainwindow.h"
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QApplication a(argc, argv);
|
||
|
ioLaunch w;
|
||
|
w.show();
|
||
|
|
||
|
return a.exec();
|
||
|
}
|