I understand how to use this function with one key, but how can I use it with two keypresses?
Like: GetAsyncKeyStat(VK_LBUTTON && VK_RBUTTON);
|
|
You would have to call
|
|||||||||
|
|
Generally the best answer if you want to query multiple keys is to use GetKeyboardState that returns the state of every Virtual key in an array which you can process directly and efficiently. |
|||
|
|