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.
12 lines
335 B
Java
12 lines
335 B
Java
9 years ago
|
import greenfoot.*;
|
||
|
|
||
|
/**
|
||
|
* Dieses Interface stellt einen Zugriff auf Methoden für die Eventverarbeitung bei Buttons.
|
||
|
* Jede Klasse, die als Event-Handler dienen will, muss dieses Interface implementieren.
|
||
|
*
|
||
|
* @author Felix Stupp
|
||
|
* @version 26.04.2016
|
||
|
*/
|
||
|
public interface ButtonEvent {
|
||
|
public void buttonClicked(Button obj);
|
||
|
}
|