Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

java game development course free

package com.edu4java.minitennis1;
import javax.swing.JFrame;

public class Game {
	public static void main(String[] args) {
		JFrame frame = new JFrame("Mini Tennis");
		frame.setSize(300, 300);
		frame.setVisible(true);
		frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
	}
}
Source by www.edu4java.com #
 
PREVIOUS NEXT
Tagged: #java #game #development #free
ADD COMMENT
Topic
Name
7+7 =