open-story-teller/story-editor/src/main.cpp

15 lines
135 B
C++

#include "main_window.h"
// Main code
int main(int, char**)
{
MainWindow w;
w.Initialize();
w.Loop();
return 0;
}