| Method Signature | Description |
| boolean isKeyboardButtonDown(KeysEnum targetKey) | returns true if the key indicated by "targetKey" is being pressed, false otherwise |
| void paddleMoveLeft(); | call this function to move the paddle to the left one unit |
| void paddleMoveRight(); | call this function to move the paddle to the right one unit |
| Type | Values |
| KeysEnum | {LEFT, RIGHT, UP, DOWN, SPACE, ENTER, ESCAPE, SHIFT, ..., ONE, TWO, THREE, ..., A,B,C,...Z, a,b,c,...,z} |
| Extended Method Signature | Description |
| void paddleMoveLeft(int whichPaddle) | call this function to move the paddle specified by whichPaddle to the left one unit |
| void paddleMoveRight(int whichPaddle) | call this function to move the paddle specified by whichPaddle to the right one unit |