Delete Start_Button.java

pull/56/head
Felix Stupp 8 years ago committed by GitHub
parent 59ba3423aa
commit 09b154e4a5

@ -1,26 +0,0 @@
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
/**
* Startet neues Spiel.
*
* @author 4ngelica
* @version 1.0
*/
public class Start_Button extends Button
{
public Start_Button() {
super("New Game", 32);
}
/**
* Erstellt neue Klasse Colors.
*/
public void act()
{
setLocation(100,100);
if (Greenfoot.mouseClicked(this))
{
Greenfoot.setWorld(new Colors());
}
}
}
Loading…
Cancel
Save