Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
graph/tools/sdklauncher/src/main.cpp
2018-12-26 07:36:34 -05:00

15 lines
251 B
C++

#include <QApplication>
#include "editorstyle.h"
#include "mainwindow.h"
int main(int argc, char* argv[]) {
QApplication app(argc, argv);
app.setStyle(new EditorStyle());
MainWindow window;
window.show();
return app.exec();
}