Skip to content
Permalink
d56974bba1
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
11 lines (10 sloc) 263 Bytes
package main;
import java.awt.Dimension;
// I think it's ugly to have two separate classes. Just have one class.
// I won't change this, though.
import javax.swing.*;
public class Main extends JFrame{
public static void main(String[] args){
new Game();
}
}