Is there a way to make thins happen when keys are pressed in a console application... like have a little smily move around the screen with the arrows or with wasd?
Is there a way to make thins happen when keys are pressed in a console application... like have a little smily move around the screen with the arrows or with wasd?
edit: btw I'm using visual c++ 6
Add mouse or Keyboard Interrupt Programmimg
do{
}
while ( !kbhit());
add all the key codes in Switch case to handle your Events.