rts_game_backend/main.cpp
ProgramSnail 8004bb42ee test
2021-03-21 17:27:16 +03:00

9 lines
No EOL
118 B
C++
Executable file

#include <curses.h>
#include <cstdlib>
int main() {
initscr();
noecho();
curs_set(false);
endwin();
}