rts_game_backend/main.cpp

10 lines
134 B
C++
Raw Normal View History

2021-03-21 14:13:02 +03:00
#include <curses.h>
#include <cstdlib>
int main() {
initscr();
cbreak();
noecho();
clear();
mvaddch(5, 5, '.');
}