mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
23 lines
304 B
C++
23 lines
304 B
C++
|
|
#include "main_window.h"
|
|
|
|
|
|
#include <iostream> // std::cerr
|
|
#include <exception> // std::set_terminate
|
|
#include <cstdlib> // std::abort
|
|
#include <csignal>
|
|
|
|
#include <iostream>
|
|
|
|
// Main code
|
|
int main(int, char**)
|
|
{
|
|
|
|
MainWindow w;
|
|
w.Initialize();
|
|
|
|
w.Loop();
|
|
|
|
return 0;
|
|
}
|