first commit

This commit is contained in:
Alex
2013-06-09 13:19:56 +02:00
commit 06453416ed
21 changed files with 3326 additions and 0 deletions

13
Spherebot_UI/main.cpp Normal file
View File

@@ -0,0 +1,13 @@
#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();
}