blob: f80545282013986d934a82080e31617a720ad86e (
plain)
1
2
3
4
5
6
7
8
9
|
package jrummikub.util;
/**
* Interface for classes that can receive parameterless events
*/
public interface IListener {
/** This method is called whenever a class we're listening to emits an event */
public void handle();
}
|