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