Ping Pang Pong Pung
Im new to java, although i have experience in c++ and vb
But im trying to build a simple game
But i am not sure how the heck to include the keylistener class
I already have all the code necessary i.e. addKeyListener(this) etc..
but im supposed to add "implements keylistener" right?
but how do i do that if i already have:
public class madPong extends Applet implements Runnable {
i tried adding ", KeyListener" "and KeyListener" "with KeyListener"
am i supposed to have only one implementation?
Thanks in advance ;)

