반응형 c언어슈팅게임1 [c언어] 슈팅게임 #include #include #include #include #include #include #pragma warning (disable : 4996) #define ESC 27 #define MAXENEMY 10 #define MAXBALL 20 int fx; int bx, by; int Score; void gotoxy(int x, int y) { COORD Pos = { x - 1, y - 1 }; SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), Pos); } void CursorView(char show)//커서숨기기 { HANDLE hConsole; CONSOLE_CURSOR_INFO ConsoleCursor; hConsole = Get.. 2020. 4. 2. 이전 1 다음 반응형