ErikBrink преди 8 години
родител
ревизия
6268c44bbc
променени са 1 файла, в които са добавени 41 реда и са изтрити 0 реда
  1. 41 0
      src/main/java/eu/tankernn/julklapp/Julspel.java

+ 41 - 0
src/main/java/eu/tankernn/julklapp/Julspel.java

@@ -0,0 +1,41 @@
+package eu.tankernn.julklapp;
+import java.awt.EventQueue;
+import javax.swing.JFrame;
+
+public class Julspel {
+
+	private JFrame frame;
+
+	/**
+	 * Launch the application.
+	 */
+	public static void main(String[] args) {
+		EventQueue.invokeLater(new Runnable() {
+			public void run() {
+				try {
+					Julspel window = new Julspel();
+					window.frame.setVisible(true);
+				} catch (Exception e) {
+					e.printStackTrace();
+				}
+			}
+		});
+	}
+
+	/**
+	 * Create the application.
+	 */
+	public Julspel() {
+		initialize();
+	}
+
+	/**
+	 * Initialize the contents of the frame.
+	 */
+	private void initialize() {
+		frame = new JFrame();
+		frame.setBounds(100, 100, 450, 300);
+		frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
+	}
+
+}