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.
22 lines
488 B
Java
22 lines
488 B
Java
9 years ago
|
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
|
||
|
|
||
|
/**
|
||
|
* Write a description of class Spieloptionen here.
|
||
|
*
|
||
|
* @author (your name)
|
||
|
* @version (a version number or a date)
|
||
|
*/
|
||
|
public class Spieloptionen extends World
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Constructor for objects of class Spieloptionen.
|
||
|
*
|
||
|
*/
|
||
|
public Spieloptionen()
|
||
|
{
|
||
|
// Create a new world with 600x400 cells with a cell size of 1x1 pixels.
|
||
|
super(600, 400, 1);
|
||
|
}
|
||
|
}
|