mirror of
https://github.com/ProgramSnail/rts_game_backend.git
synced 2026-01-12 22:47:14 +00:00
11 lines
No EOL
183 B
C++
Executable file
11 lines
No EOL
183 B
C++
Executable file
#include <curses.h>
|
|
#include <cstdlib>
|
|
#include "src/out_api/init.hpp"
|
|
|
|
int main() {
|
|
init::begin();
|
|
for (; !init::stop();) {
|
|
init::step();
|
|
}
|
|
init::end();
|
|
} |