Hi there,
I am trying to programm a Pong game with the shakebox.org tutorial.
public class BasicGame extends GLPong
I am still quite new to Java but I understand that BasicGame inherrits all methods and attributes from the GLPong class.
Both classes have an init method. In the BasicGame init-method I use the LWJGL Object Keyboard but Eclipse outputs “Unhandled exception type LWJGLException”. Now in the same class in a method called cleanup I use the Keyboard method destroy and that works fine.
Why?
What exact effect has the extention on the methods?
