This commit is contained in:
2020-06-20 01:08:53 +02:00
parent 99d9170365
commit babbbad127
14 changed files with 12 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package game.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);
frame.setLocationRelativeTo(null);
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.