Files
Spherebot-Host-GUI/Spherebot_UI/main.cpp
2013-06-09 13:19:56 +02:00

14 lines
263 B
C++

#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
app.setOrganizationName("thunderbug1");
MainWindow w;
w.setWindowTitle("Spherebot control");
w.show();
return app.exec();
}