open-story-teller/story-editor/src/main.cpp
2023-04-18 16:20:41 +02:00

14 lines
183 B
C++

#include "main_window.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MainWindow *w = new MainWindow();
w->showNormal();
return app.exec();
}