Java KeyListener in separate class
- by Chris
So I have my main class here, where basically creates a new jframe and adds a world object to it. The world object is basically where all drawing and keylistening would take place...
public class Blobs extends JFrame{
public Blobs() {
super("Blobs :) - By Chris Tanaka");
setVisible(true);
setResizable(false);
…