mirror of
https://github.com/thunderbug1/Spherebot-Host-GUI.git
synced 2026-03-01 07:34:00 +01:00
14 lines
263 B
C++
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();
|
|
}
|