rts_game_backend/main.cpp

11 lines
183 B
C++
Raw Normal View History

2021-03-21 14:13:02 +03:00
#include <curses.h>
#include <cstdlib>
2021-03-23 00:30:28 +03:00
#include "src/out_api/init.hpp"
2021-03-21 14:13:02 +03:00
int main() {
2021-03-23 00:30:28 +03:00
init::begin();
for (; !init::stop();) {
init::step();
}
init::end();
2021-03-21 14:13:02 +03:00
}