mirror of
https://github.com/correl/mercenary.git
synced 2024-11-23 19:19:51 +00:00
9 lines
157 B
C++
9 lines
157 B
C++
|
#include <iostream>
|
||
|
#include <QCoreApplication>
|
||
|
#include "testapp.h"
|
||
|
|
||
|
int main( int argc, char *argv[] ) {
|
||
|
TestApp app( argc, argv );
|
||
|
return app.exec();
|
||
|
}
|