mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-07 01:15:14 +01:00
14 lines
183 B
C++
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();
|
|
}
|