blob: 7a19347cdfc8de9c394b1b1238e232ddf8117941 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package NET.worlds.scape;
public class MouseExitEvent extends MousePositionEvent {
public MouseExitEvent(int time, WObject target, int x, int y) {
super(time, target, x, y);
}
@Override
public boolean deliver(Object o) {
return o instanceof MouseExitHandler && ((MouseExitHandler)o).handle(this) ? true : super.deliver(o);
}
}
|