¿Alguien podría ayudarme?
Código
#include<stdio.h> #include<windows.h> #include<conio.h> void gotoxy(int x, int y){ HANDLE hCon; hCon = GetStdHandle(STD_OUTPUT_HANDLE); COORD dwPos; dwPos.X = x; dwPos.Y = y; SetConsoleCursorPosition(hCon, dwPos); } int main(){ int x = 10, y = 10; bool game_over = false; while(!game_over){ if(kbhit()){ if(tecla == 'A') x--; if(tecla == 'D') x++; if(tecla == 'W') y--; if(tecla == 's') y++; } } return 0; }
Desde ya, muchas gracias.
· Los códigos deben ir en etiquetas GeSHi
>aquí las reglas del foro
-Engel Lex