mirror of
https://github.com/thunderbug1/Spherebot-Host-GUI.git
synced 2026-03-03 08:33:59 +01:00
first commit
This commit is contained in:
13
Spherebot_UI/main.cpp
Normal file
13
Spherebot_UI/main.cpp
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user