mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-07 09:19:57 +01:00
15 lines
135 B
C++
15 lines
135 B
C++
|
|
#include "main_window.h"
|
|
|
|
// Main code
|
|
int main(int, char**)
|
|
{
|
|
|
|
MainWindow w;
|
|
w.Initialize();
|
|
|
|
w.Loop();
|
|
|
|
return 0;
|
|
}
|