mirror of
https://github.com/ProgramSnail/rts_game_backend.git
synced 2026-01-12 22:47:14 +00:00
10 lines
134 B
C++
10 lines
134 B
C++
|
|
#include <curses.h>
|
||
|
|
#include <cstdlib>
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
initscr();
|
||
|
|
cbreak();
|
||
|
|
noecho();
|
||
|
|
clear();
|
||
|
|
mvaddch(5, 5, '.');
|
||
|
|
}
|