Alright, I'm trying to create what I thought would be a pretty simplistic game in Java. Basically, I have a Square class, in which each square knows the x and y coordinates of its upper left-hand ...
You don't need an init () method in a Java application. It's only required in an applet (you must override it when you extend JApplet). Just add the key listener in the constructor of your JFrame or ...