Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. int main()
  2. {
  3. while (true)
  4. {
  5. if (_kbhit()) // ENTRA AL IF CUANDO SE PRESIONA UNA TECLA
  6. {
  7. tecla = _getch();
  8.  
  9. switch (tecla)
  10. {
  11. case DERECHA:
  12. {
  13. // MOVIMIENTO A LA DER
  14. break;
  15. }
  16.  
  17. case IZQUIERDA:
  18. {
  19. // MOVIMIENTO A LA IZQ
  20. break;
  21. }
  22.  
  23. case ESC:
  24. {
  25. exit(0);
  26. break;
  27. }
  28. }
  29. }
  30. }
  31.  
  32. return 0;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement