반응형 매트릭스게임1 [c언어]Matrix(매트릭스)게임 #include #include #include #include #include // kbhit(), getch() #pragma warning (disable : 4996) //방향키의 아스키 코드값 #define MAX 1024 #define LEFT 75 #define RIGHT 77 #define UP 72 #define DOWN 80 #define ESC 27 void gotoxy(int x, int y) { COORD Pos = { x - 1, y - 1 }; SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), Pos); } struct Signal { bool exist; // 신호의 존재 여부 char ch; // 출력할 문자 int x,.. 2020. 4. 2. 이전 1 다음 반응형