mirror of
https://github.com/thunderbug1/Spherebot-Host-GUI.git
synced 2026-02-26 14:21:18 +01:00
22 lines
490 B
C++
22 lines
490 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 2.0");
|
|
|
|
// QFile stylesheet(":/new/stylesheet/stylesheet.txt");
|
|
// stylesheet.open(QFile::ReadOnly);
|
|
// QString setSheet = QLatin1String(stylesheet.readAll());
|
|
// qDebug()<<setSheet;
|
|
// w.setStyleSheet(setSheet);
|
|
|
|
w.show();
|
|
|
|
return app.exec();
|
|
}
|