mirror of
https://github.com/ioquake/launch.git
synced 2024-11-10 06:31:39 +00:00
ab2ebf754d
Project file based on @8bitprodigy's google code repo.
11 lines
174 B
C++
11 lines
174 B
C++
#include <QApplication>
|
|
#include "mainwindow.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
ioLaunch w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|