crapsStart

/** * * Josh Wang * 1 October 2017 */ import javax.swing.JFrame; public class crapsStart extends JFrame { public crapsStart() { add(new craps()); setTitle("craps"); setDefaultCloseOperation(EXIT_ON_CLOSE); setSize(500,500); setLocationRelativeTo(null); setVisible(true); setResizable(false); } public static void main(String[] args) { new crapsStart(); } }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.