Game Jar 320x240 Top: Java
public static void main(String[] args) new JavaGame();
public static void main(String[] args) new JavaGame(); java game jar 320x240 top
public void paint(Graphics g) super.paint(g); g.fillOval(ballX, ballY, 20, 20); public void paint(Graphics g) super.paint(g)
public JavaGame() setTitle("My Java Game"); setSize(320, 240); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setVisible(true); public JavaGame() setTitle("My Java Game")
Timer timer = new Timer(16, new ActionListener() public void actionPerformed(ActionEvent e) updateGame(); repaint(); ); timer.start();
Here's some sample code to get you started:
public static void main(String[] args) new JavaGame();
public static void main(String[] args) new JavaGame();
public void paint(Graphics g) super.paint(g); g.fillOval(ballX, ballY, 20, 20);
public JavaGame() setTitle("My Java Game"); setSize(320, 240); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setVisible(true);
Timer timer = new Timer(16, new ActionListener() public void actionPerformed(ActionEvent e) updateGame(); repaint(); ); timer.start();
Here's some sample code to get you started: