PongMitDatenbank/src/Main.java

15 lines
261 B
Java

import java.sql.SQLException;
public class Main {
@SuppressWarnings("unused")
public static void main(String[] args) throws SQLException {
// System.out.println("test");
System.setProperty("sun.java2d.opengl", "true");
Game Game = new Game();
}
}