| Method Signature | Description |
| boolean isKeyboardButtonDown(KeysEnum targetKey) | returns true if the key indicated by "targetKey" is being pressed, false otherwise |
| void paddleSetImage(String fileName)         | call this function to set the paddle image to the file specified in "fileName", which needs to include the path:"paddles/", so for example: "paddles/P2.png" |
| Type | Values |
| KeysEnum | {LEFT, RIGHT, UP, DOWN, SPACE, ENTER, ESCAPE, SHIFT, ..., ONE, TWO, THREE, ..., A,B,C,...,P,Q,R,...,Z} |
| Extended Method Signature | Description |
| void paddleSetImage(String fileName, int whichPaddle) | call this to set the paddle image specified by "fileName" for the paddle indicated by the integer index "whichPaddle" (for games with more than 2 paddles like a powerup or for multi-player) |