Can anyone think of any way to turn those "id held" statements into single keypresses?
I did:
//Pseudocode
while isKeyPressed(Key)
{
if not isKeyPressed(Key) break;
}
But this is not good, as other keys are not detected and program is delayed.
Can anyone think of better way?