is there a way to check for keypresses without having it ask for input?
Printable View
is there a way to check for keypresses without having it ask for input?
You mean just track every time someone presses a key, rather than wait for them to press it?
You could use GetAsyncKeyState to find if a key IS pressed. Alternatively a keyboard hook might be the answer.
There are examples of both in other threads.