C++/summary
키보드에서 입력 받아보자. _kbhit();
gandus
2010. 5. 21. 00:15
if(_kbhit()) // 키보드 입력값이 있을때만 주인공 케릭터 움직임
{
move_key = _getch();
move(move_key);
}