You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zweiundvierzig/Greenfoot.java

18 lines
286 B
Java

/**
Ersetzt die Greenfoot Klasse von Greenfoot und hält das Programm am Laufen.
*/
public class Greenfoot {
private static World currentWorld = null;
public static void main(String[] args) {
setWorld(new Start_Load());
}
public static void setWorld(World w) {
}
}