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